#current-year {
    color: rgb(51, 51, 51);
    font-size: 15px;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav button {
    font-size: 16px;
    margin-left: 20px;
}

.callback-btn {
    position: fixed;
    right: 10px;
    bottom: 60px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #00B7CB;
    cursor: pointer;
}

.callback-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.modal {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    padding: 30px;
    z-index: 20;
    display: none;
}

.modal .inner {
    position: relative;
    max-width: 500px;
    width: 100%;
    height: auto;
    background-color: white;
    border-radius: 10px;
    padding: 50px;
}

.modal .inner .body {
    height: 100%;
    overflow: auto;
}

.modal.active {
    display: flex;
}

.modal#thanks {
    .inner {
        max-width: 600px;
        height: 400px;
    }
}

.close {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.close::before, .close::after {
    position: absolute;
    display: block;
    content: '';
    width: 3px;
    height: 100%;
    background-color: black;
    border-radius: 3px;
    top: 50%;
    left: 50%;
}

.close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

textarea, input, select {
    outline: none;
    -webkit-appearance: none;
    /*font-family: $font-family;*/
}

textarea {
    resize: none;
    width: 100%;
}

button, input {
    outline: none;
    border: none;
    /*font-family: $font-family;*/
}

input {
    display: block;
    padding: 10px 10px 10px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

label {
    margin-bottom: 10px;
    width: 100%;
}

button {
    background: #00B7CB;
    padding: 8px;
    text-align: center;
    font-size: 18px;
    color: white;
    width: 100%;
    border-radius: 4px;
}