body {
    font-family: 'Nunito Sans', sans-serif;
}

/* Backgrounds */
.bg-blue {
    background-color: #65A1D7;
}

/* Shadows */
.weak-shadow {
    background: #FFFFFF;
    border: 1px solid #D1D1CE;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.strong-shadow {
    background: #FFFFFF;
    border: 1px solid #D1D1CE;
    box-shadow: 0 4px 37px 0 rgba(0, 0, 0, 0.13);
    border-radius: 4px;
}

.normal-box {
    background: #FFFFFF;
    border: 1px solid #CFCFCF;
    border-radius: 4px;
}

/* hr line */
.divide-line {
    border: 1px solid #CFCFCF;
    border-radius: 2px;
}

/* Slider */
.slider {
    appearance: none;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(87, 87, 86) 60%, rgb(87, 87, 86) 60%);
    outline: none;
    opacity: 0.7;
    transition: 0.2s;
    transition: opacity 0.2s;
    border-radius: 12px;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    background-image: url(../img/three-lines.jpg);
    background-size: 28px;
    box-shadow: -5px 5px 5px #DADAD9;
}

/* Inputs */
.search-input input {
    height: 48px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.search-input .icon {
    height: 48px;
    width: 48px;
    line-height: 55px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    color: #DADAD9;
    cursor: pointer;
}

.fa-solid {
    background-color: #65A1D7;
    border-radius: 10px;
}

::placeholder {
    color: #65A1D7;
}

.search-input .autocom-box {
    padding: 0px;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
}

.search-input.active .autocom-box {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.autocom-box li {
    list-style: none;
    padding-left: 12px;
    width: 100%;
    cursor: default;
    border-radius: 3px;
    display: none;
    opacity: 100%;
    font-family: 'Nunito Sans';
    line-height: 40px;
    cursor: pointer;
}

.search-input.active .autocom-box li {
    display: block;
}

.autocom-box li:hover {
    background: #D1D1CE;
    color: #65A1D7;
}

/* Checkbox */
.checkbox {
    height: 50px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 550px;
}

.checkbox input {
    appearance: none;
    height: 28px;
    width: 28px;
    border: 2px solid lightgrey;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.checkbox label {
    color: #4c4c4c;
    font-size: 16px;
    font-family: 'Nunito Sans';
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
}

.checkbox input:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    font-size: 20px;
    color: white;
    display: none;
}

.check:hover {
    background-color: #D1D1CE;
}

.checkbox input:checked {
    background-color: #65A1D7;
}

.checkcheckboxBox input:checked:after {
    display: block;
}

/* Radious */
.radio {
    margin-left: 690px;
}

.radio-item {
    display: block;
    cursor: pointer;
    margin-top: 25px;
}

.radio-list label {
    color: #4c4c4c;
    font-size: 16px;
    font-family: 'Nunito Sans';
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
}

.radio-real {
    width: 1px;
    height: 1px;
    position: absolute;
    opacity: 0;
    appearance: none;
}

.radio-fake {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 2px solid lightgrey;
    margin-top: 10px;
    vertical-align: middle;
}

.radio-fake:hover {
    background-color: #D1D1CE;
}

.radio-real:checked+.radio-fake::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background: #65A1D7;
}

/* Horizontal tabs */
/* Vertical tabs */

/* Buttons */
.large-primary-button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    border-radius: 22px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0px 32px;
    height: 44px;
    text-align: center;
    background-color: #A7C712;
    color: white;
    cursor: pointer;
    outline: none;
    border: none;
}

.large-primary-button:hover {
    background-color: #90ad10;
}

.large-primary-button:active {
    background-color: #b3d714;
}

.large-white-button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    border-radius: 22px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0px 32px;
    height: 44px;
    text-align: center;
    background-color: #FFFFFF;
    color: #65A1D7;
    cursor: pointer;
    outline: none;
    border: 1px solid;
    border-color: #7E8A90;
}

.large-white-button:hover {
    background-color: #f8f8f7;
    color: #4d93d1;
}

.large-white-button:active {
    background-color: #F0F0EF;
}

.large-blue-button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    border-radius: 22px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0px 32px;
    height: 44px;
    text-align: center;
    background-color: #65A1D7;
    color: white;
    cursor: pointer;
    outline: none;
    border: 1px solid;
    border-color: #7E8A90;
}

.large-blue-button:hover {
    background-color: #4d93d1;
    color: white;
}

.large-blue-button:active {
    background-color: #71a9da;
}

/* Small Buttons */
/* Small primary button */
.small-primary-button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    border-radius: 22px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0px 20px;
    height: 32px;
    text-align: center;
    background-color: #A7C712;
    color: white;
    cursor: pointer;
    outline: none;
    border: none;
}

.small-primary-button:hover {
    background-color: #90ad10;
}

.small-primary-button:active {
    background-color: #b3d714;
}

/* Small white button */
.small-white-button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    border-radius: 22px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0px 20px;
    height: 32px;
    text-align: center;
    background-color: #FFFFFF;
    color: #65A1D7;
    cursor: pointer;
    outline: none;
    border: 1px solid;
    border-color: #7E8A90;
}

.small-white-button:hover {
    background-color: #f8f8f7;
    color: #4d93d1;
}

.small-white-button:active {
    background-color: #F0F0EF;
}

/* Small blue button */
.small-blue-button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    border-radius: 22px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0px 20px;
    height: 32px;
    text-align: center;
    background-color: #65A1D7;
    color: white;
    cursor: pointer;
    outline: none;
    border: 1px solid;
    border-color: #7E8A90;
}

.small-blue-button:hover {
    background-color: #4d93d1;
    color: white;
}

.small-blue-button:active {
    background-color: #71a9da;
}

/* Inactive Button */

button {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0px 32px;
    height: 44px;
    text-align: center;
    outline: none;
    border: none;
    color: white;
}

/* Typography */

.large-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: 0;
    line-height: 38px;
}

.medium-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
}

.small-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 24px;
}

.block-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 26px;
}


.link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    text-decoration: none;
}

.caption {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 13px;
}

.large-paragraph-bold {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 22px;
}

.large-paragraph {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 22px;
}

.large-paragraph-captions {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

/* Media Queries for Link */
@media only screen and (min-width: 320px) and (max-width: 420px) {

    }

    @media only screen and (min-width: 425px) and (max-width: 600px) {
        .link {
            font-size: 13px;
        }

        .large-paragraph-captions {
            font-size: 13px;
        }
        .medium-heading {
            font-size: 14px;
        }
    }

    @media only screen and (min-width: 601px) and (max-width: 900px) {
    .medium-heading {
        font-size: 14px;
        }
    }

    @media only screen and (min-width: 901px) and (max-width: 1024px) {
        .medium-heading {
            font-size: 14px;
        }
    }
