/* SCROLL TO TOP BUTTON */
#scroll-to-top-btn {
    position: fixed;
    right: 15px;
    bottom: 70px;
    padding: 14px;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    background: #1A1A1AE5;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in;
    z-index: 50;
}

#scroll-to-top-btn::before, 
#scroll-to-top-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 15px;
    height: 3px;
    border-radius: 3px;
    background-color: white;
    transform-origin: center;
}

#scroll-to-top-btn::before {
    left: 40%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

#scroll-to-top-btn::after {
    left: 60%;
    transform: translate(-50%, -50%) rotate(45deg);
}

#scroll-to-top-btn:hover {
    background: #B38F55;
    color: white;
}

@media screen and (max-width: 500px) {
    #scroll-to-top-btn {
        right: 6px;
    }
}

/* FORM */
popup-container[data-popup-id="form"] .popup {
    border-radius: 0;
}

popup-container[data-popup-id="form"] input, popup-container[data-popup-id="form"] textarea {
    border: 1px solid #CCCCCC !important;
}

get-in-touch-form[data-form-id="form"] .get-in-touch-form form {
    margin-right: 0;
}

get-in-touch-form[data-form-id="form"] .get-in-touch-form {
    background-color: transparent;
}

get-in-touch-form[data-form-id="form"] .get-in-touch-form form .form_wrap {
    flex-direction: column;
}

get-in-touch-form[data-form-id="form"] .get-in-touch-form form input {
    width: 475px;
    height: 47px;
    padding: 10px 16px;
    border-radius: 0;
    border: 1px solid #CCCCCC;
    &::placeholder {
        font-size: 18px;
        color: #7A7A7A;
    }
}

get-in-touch-form[data-form-id="form"] .get-in-touch-form form textarea {
    width: 475px;
    padding: 10px 16px;
    border-radius: 0;
    border: 1px solid #CCCCCC;
    &::placeholder {
        font-size: 18px;
        color: #7A7A7A;
    }
}

get-in-touch-form[data-form-id="form"] .get-in-touch-form form .btn_wrapper .btn {
    color: white;
    background: #313131;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0;
    padding: 14px 28px;
}

get-in-touch-form[data-form-id="form"] .get-in-touch-form .like_title {
    color: #1A1A1A;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 42px;
}


@media screen and (max-width: 620px) {
    get-in-touch-form[data-form-id="form"] .get-in-touch-form form input {
        width: 400px;
    }
    
    get-in-touch-form[data-form-id="form"] .get-in-touch-form form textarea {
        width: 400px;
    }
}

@media screen and (max-width: 550px) {
    get-in-touch-form[data-form-id="form"] .get-in-touch-form form input {
        width: 300px;
    }
    
    get-in-touch-form[data-form-id="form"] .get-in-touch-form form textarea {
        width: 300px;
    }
}

@media screen and (max-width: 440px) {
    get-in-touch-form[data-form-id="form"] .get-in-touch-form form input {
        width: 250px;
    }
    
    get-in-touch-form[data-form-id="form"] .get-in-touch-form form textarea {
        width: 250px;
    }
}

@media screen and (max-width: 400px) {
    get-in-touch-form[data-form-id="form"] .get-in-touch-form form input {
        width: 100%;
    }
    
    get-in-touch-form[data-form-id="form"] .get-in-touch-form form textarea {
        width: 100%;
    }
}

/* BREADCRUMBS */
breadcrumbs-component ul.breadcrumbs_list li  {
    & a {
        transition: all 0.2s ease-in-out;
    }

    & a:hover {
        color: #B38F55;
    }
};