/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* custom scroll bar */
::-webkit-scrollbar {
    width: 0px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    text-align: center;
    height: auto;
    color: #1b1b1b;
    background: #2C3E50;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #4CA1AF, #2C3E50);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #4CA1AF, #2C3E50);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.ortalama {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
}

.box {
    max-width: 600px;
    width: 100%;

    border-radius: 10px;
    padding-left: 2rem;
    padding-right: 2rem;

    padding-top: 2em;
    padding-bottom: 2em;
    background-color: rgb(0, 0, 0, 0.5);
    box-shadow: 0px 0px 30px 5px rgba(20, 20, 20, 0.6);
    margin: 0 auto;
    margin: 0.75rem;
}

#c-btn button {
    max-width: 140px;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 7px;
}

#c-btn button {
    color: #fff;
    cursor: pointer;
    background: #1b1b1b;
    transition: 0.3s ease;
}

#c-btn button:hover {
    background: #004c9c;
}

.content button {
    max-width: 450px;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 7px;
}

.content button {
    color: #fff;
    cursor: pointer;
    background: #004c9c;
    transition: 0.3s ease;
}

.content button:hover {
    background: #0069da;
}

/* ---------- */

.first {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0vh;
    margin-bottom: 1rem;
}

.wrapper {
    width: 500px;
    box-shadow: 0px 0px 30px 5px rgba(20, 20, 20, 0.6);
    border-radius: 7px;
}

.wrapper header {
    display: flex;
    font-size: 21px;
    font-weight: 500;
    color: #00b7ff;
    padding: 16px 15px;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

header i {
    font-size: 0em;
    cursor: pointer;
    margin-right: 8px;
}

.wrapper.active header i {
    margin-left: 5px;
    font-size: 30px;
}

.wrapper .input-part {
    margin: 20px 25px 30px;
}

.wrapper.active .input-part {
    display: none;
}

.input-part .info-txt {
    display: none;
    font-size: 17px;
    text-align: center;
    padding: 12px 10px;
    border-radius: 7px;
    margin-bottom: 15px;
}

.input-part .info-txt.error {
    color: #721c24;
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.input-part .info-txt.pending {
    color: #0c5460;
    display: block;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
}

.input-part :where(input, button) {
    width: 100%;
    height: 55px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 7px;
}

.input-part input {
    text-align: center;
    padding: 0 15px;
    background: transparent;
    color: #ccc;
    border: 1px solid #ccc;
}

.input-part input:is(:focus) {
    border: 2px solid #eee;
}

.input-part input::placeholder {
    color: #bfbfbf;
}

#shortlink {
    display: none;
}

.input-part .separator {
    height: 1px;
    width: 100%;
    margin: 15px 0;
    background: #ccc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator::before {
    color: #b3b3b3;
    font-size: 19px;
    padding: 0 15px;
    background: #fff;
}