.btn-login-register {
    display: inline-flex;
    appearance: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    user-select: none;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
    outline: transparent solid 2px;
    outline-offset: 2px;
    line-height: 1.2;
    border-radius: 0.375rem;
    font-weight: 600;
    height: 30px;
    font-size: 12px;
    padding-inline-start: 0.5rem;
    padding-inline-end: 0.5rem;
    background: #ffffff;
    color: red;
    min-width: 126px;
    text-decoration: none;
}

.form-login {
    margin-top: 15px;
    justify-content: center;
    /* display: flex; */
    align-items: center;
}

.form-login form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.form-login form div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-login form input {
    /* border-radius: 10px; */
    width: 100%;
    padding: 10px;
    border: white;
    /* border-bottom-width: 1px;
    border-bottom-style: solid; */
    /* border-color: #a7264d; */
    background: #d9d9d9;
    /* outline: transparent solid 2px; */
    outline-color: #00000017;
    outline-style: none;
    outline-width: 1px;
}

.form-login form button {
    display: inline-flex;
    appearance: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    user-select: none;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
    outline: transparent solid 2px;
    outline-offset: 2px;
    line-height: 1.2;
    font-weight: 600;
    transition-property: background-color, border-color, color, fill, stroke,
        opacity, box-shadow, transform;
    transition-duration: 200ms;
    height: 44px;
    font-size: 16px;
    padding-inline-start: 0.75rem;
    padding-inline-end: 0.75rem;
    background: #ffb223;
    color: #fff;
    border-radius: 9999px;
    min-width: 160px;
    border: none;
    margin-top: 25px;
    /* width: 100px; */
    width: 60%;
    text-align: center;
    box-shadow: inset 0 0 15px #fff;
    letter-spacing: 4.48px;
}
.form-login form button:hover{
    background: #000;
    color: #fff;
}
.register-link {
    color: red;
    margin-top: 15px;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    text-wrap: nowrap;
    /* align-self: baseline; */
}

.register-link:hover {
    /* color: #ce3256 !important; */
    text-decoration: none;
}

.forgot-pass-link{
    color:red;
    text-decoration: none;
    white-space: nowrap;
}
.forgot-pass-link:hover{
    color:rgb(164, 30, 30);
}
/* This css is for normalizing styles. You can skip this. */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.checkbox-group {
    display: flex;
    /* margin-bottom: 15px; */
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center;

}

.checkbox-group input {
    padding: 0;
    height: initial;
    width: initial;
    /* margin-bottom: 0 !important; */
    display: none;
    cursor: pointer;
}

.checkbox-group label {
    position: relative;
    cursor: pointer;
    font-size: larger;
}

.checkbox-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid red;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    width: 22px;
    height: 22px;
    border-radius: 5px;
}

.checkbox-group input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 8px;
    width: 6px;
    height: 14px;
    border: solid red;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
@media only screen and (min-width:550px) {
    .checkbox-result input:checked + label:after {
        top: 5px !important;
    }
}
.checkbox-select-all input:checked + label:after {
    top: 4px !important;
    left: 9px !important;
}

.main {
    padding-top: 40px;
}

.back {
    text-decoration: none;
    color: #000;
}
.back svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    line-height: 1em;
    flex-shrink: 0;
    color: currentcolor;
    vertical-align: middle;
    /* margin-right: 0.5rem; */
    font-size: 13px;
}

@media (min-width: 760px) {
    .back {
        /* padding: 20px 200px; */
        margin-top: 20px;
    }
    .form-login form {
        min-width: 500px;
        width: 70%;
    }
    .padding-main {
        padding-top: 30px;
        /* padding-left: 10vw;
        padding-right: 10vw; */
    }
    .form-login {
        margin-top: 25px;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    .form-login label {
        font-size: 13px;
        margin-top: 15px;
        margin-bottom: 15px;

    }
}
.form-login label {
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 8px;

}

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    border-radius: 9999px;
    outline: none;
    background-color: #ffffff;
    color: white;
    cursor: pointer;
    padding: 15px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
    border: solid 2px #000;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
@media only screen and (max-width: 550px) {
    .header-before-login {
        height: 42px !important;
    }
}

.menu-header-lp p {
    color: #fff500;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 18px;
    /* white-space: nowrap; */
}

.menu-header-lp {
    margin-left: 15px;
    gap: 30px;
    margin-right: 15px;
}
@media (min-width: 768px) and (max-width: 1200px) {
    .menu-header-lp p {
        /* font-size: 1.3vw; */
    }
}

@media only screen and (max-width: 767.98px) {
    .menu-header-lp {
        gap: 12px;
    }
    .menu-header-lp p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 499.98px) {
    .menu-header-lp p {
        font-size: 12px;
    }
    .user_area {
        width: 60px !important;
    }
    .menu-header-lp img {
        max-width: 25px !important;
    }
}

@media only screen and (max-width: 402.98px) {

    .menu-header-lp p {
        font-size: 10px;
    }
    .menu-header-lp img {
        max-width: 20px !important;
    }

    .menu-header-lp {
        gap: 7px;
    }

    .user_area {
        width: 40px !important;
    }
}

@media only screen and (max-width: 349.98px) {

    .menu-header-lp p {
        font-size: 8px;
    }
    .menu-header-lp img {
        max-width: 15px !important;
    }

    .menu-header-lp {
        gap: 4px;
    }

    .user_area {
        width: 30px !important;
    }
}

.login_area {
    /* width: 233px; */
    width: 116px;
    height: 80px;
    align-items: center;
    background-color: #565656;
    display: flex;
    justify-content: space-evenly;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .cart {
        width: 70px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .banner_pc {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .cart__text {
        font-size: 0.5em;
    }
}

.cart__text {
    display: block;
    font-size: 0.6em;
    color: #ffb302;
    margin-top: 1px;
    margin-left: 4px;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .login-h {
        width: 70px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .login__text {
        font-size: 0.5em;
        margin-right: -3px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .banner_sp {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .cart img {
        width: 40%;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .login-h img {
        width: 40%;
    }
}

.login__text {
    display: block;
    font-size: 0.6em;
    color: #ffb302;
    margin-top: 1px;
    text-decoration: none;
}

.login_area a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login_area .cart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hearder-container {
    margin-right: 0px;
    padding-right: 0px;
}

.login_area img {
    width: 70%;
    max-width: 50px;
}

.login_area .banner_sp {
    display: none;
}

@media screen and  (min-width: 500px) and (max-width: 1130px){
    .login_area {
        width: 128px;
    }

}

.header-content-slider {
    background-image: url("../../assets/frontend/images/top_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 80px;
}

.slider-header {
    margin-top: 40px !important;
}

.slider-header .slick-dots {
    bottom: 0 !important;
    position: relative;
}

.slider-header .slick-dots li button:before  {
    font-size: 19px !important;
    color: #ffffff;
    opacity: 1;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    border-radius: 27px;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
}

.slider-header li.slick-active  button:before {
    color: #ff6d53;
}

.slider-header .slick-dots {
    margin-top: 13px
}

@media  screen and (min-width: 768px) and (max-width: 948px) {
    .link-logo {
        /* width: 18%; */
    }
}

@media screen and (max-width: 767px){
    .menu-header-lp {
        /* display: none !important; */
    }

}

@media screen and (max-width: 767px) {
    .banner_sp {
        display: block !important;
        line-height: 1;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .login__text_sp a {
        color: #fff;
        font-size: 13px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767px) {
    .header-before-login .info {
        width: 40%;

    }

    .header-before-login .info .login_area {
        width: 100%;
    }

    .login_area .cart {
        display: none;
    }

    .login_area {
        justify-content: center;
    }

    .login__text.banner_pc {
        display: none;
    }

    .header-content-slider {
        width: 100% !important;
        padding-left: 0px;
        padding-right: 0px;
    }

    .slider-header  {
        padding-left: 0px;
        padding-right: 0px;
        width: 100%;
        margin: 0 !important;
        max-width: 100%;
        padding-top: 49px;
    }
    .login_area img {
        max-width: 30px;
    }
}
@media screen and (max-width: 550px) {
    .head-background.header-content-slider {
        padding-bottom: 50px !important;
    }

}

@media only screen and (max-width: 1200px) {
    .slider-header .slick-dots li button:before {
        font-size: 10px !important;
        width: 10px;
        height: 10px;
        
    }
}
