@charset "UTF-8";

/**
 * @description: import fonts
 */

/*@import url('../../../fonts/PottaOne/PottaOne.css');*/
/*@import url('../../../fonts/FiraCode600/FiraCode600.css');*/
/*@import url('../../../fonts/FiraCode300/FiraCode300.css');*/

:root {
    /*页面配色*/
    --v8-base-color: #222222;
    --v8-primary-color: #00FFA8;
    --v8-text-active-color: #00A368;
    --v8-background-color: #FAFFEE;
    --v8-form-color: #FFFFFF;
    --v8-text-color: #222222;
    --v8-button-text-color: #222222;
    --v8-error-color: #FF3F62;
    --v8-button-google-background-color: #FF9C41;

    --v8-background-color-r: 255;
    --v8-background-color-g: 255;
    --v8-background-color-b: 255;

    /*字体*/
    --v8-font-family-title: 'Potta One', sans-serif !important;
    --v8-font-family-text: 'Fira Code', sans-serif !important;

    /*字体大小*/
    --v8-size-0: calc(42px + (48 - 42)*(100vw - 768px)/(1920 - 768));
    --v8-size-1: calc(30px + (36 - 30)*(100vw - 768px)/(1920 - 768));
    --v8-size-2: calc(22px + (24 - 22)*(100vw - 768px)/(1920 - 768));
    --v8-size-3: calc(14px + (16 - 14)*(100vw - 768px)/(1920 - 768));
    --v8-size-4: calc(10px + (12 - 14)*(100vw - 768px)/(1920 - 768));
}


html {
    height: 100%;
    font-size: 16px;
}

body {
    width: 100%;
    min-height: 100%;
    min-width: 580px;
    margin: 0;
    padding: 0 !important;
    font-family: var(--v8-font-family-text);
    font-weight: normal;
    background-color: var(--v8-background-color);
    position: relative;
    color: var(--v8-text-color);
}

svg path{
    fill: var(--v8-text-color);
    /*stroke: var(--v8-text-color);*/
}

svg path.primary_color{
    fill: var(--v8-primary-color) !important;
    /*stroke: var(--v8-primary-color);*/
}

svg path.svg_stroke{
    stroke: var(--v8-text-color);
}

h0,
.size-0 {
    font-size: var(--v8-size-1) !important;
}

h1,
.size-1 {
    font-size: var(--v8-size-1) !important;
}

h2,
.size-2 {
    font-size: var(--v8-size-2) !important;
}

h3,
.size-3 {
    font-size: var(--v8-size-3) !important;
}

h4,
.size-4 {
    font-size: var(--v8-size-4) !important;
}

h5 {
    font-size: var(--v8-size-4) !important;
}

.line-height-1 {
    line-height: 1;
}

.line-height-2 {
    line-height: 2;
}

.line-height-3 {
    line-height: 4;
}

.font-title {
    font-family: var(--v8-font-family-title) !important;
}

.font-text {
    font-family: var(--v8-font-family-text) !important;
}

.secondary-color {
    color: var(--v8-primary-color);
}

.hidden{
    display: none !important;
}

.line-through {
    text-decoration: line-through;
}

.white_background{
    background-color: var(--v8-form-color);
}

/*气泡框*/
.bubble_box_container{
    position: relative;
}

/*显示气泡框*/
.bubble_box_container:hover .bubble_box{
    visibility: visible;
    opacity: 1;
}

.bubble_box{
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    /*background-color: rgba(var(--v8-background-color-r), var(--v8-background-color-g), var(--v8-background-color-b), 0.7);*/
    background-color: var(--v8-background-color);
    border: 1px solid var(--v8-base-color);
    border-radius: 14px 32px 16px 24px;
    transform: skew(8deg, 0) translate(25%, 8px);
    position: absolute;
    overflow: visible;
    transition: opacity 0.6s ease;
}

.bubble_box_content{
    transform: skew(-8deg, 0);
    padding: 12px 16px;
    font-size: var(--v8-size-3);
    color: var(--v8-text-color);
}

.bubble_box::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -21px;
    left: calc(30% - 2px);
    transform: skew(-55deg, 0);
    border: 11px solid transparent;
    border-bottom-color: var(--v8-background-color);
}

.bubble_box::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -24px;
    left: calc(30% - 1px);
    transform: skew(-55deg, 0);
    border: 12px solid transparent;
    border-bottom-color: var(--v8-base-color);
}

a.custom_a{
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

a.custom_a:hover {
    color: var(--v8-text-active-color);
}

a.custom_a:active {
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.return{
    position: relative;
    top: 0;
    left: 6vw;
    color: var(--v8-text-color);
    margin-top: 0.5rem;
    max-width: 200px;
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

.return:active {
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.return svg path{
    fill: var(--v8-text-color);
}

.return:hover {
    color: var(--v8-text-active-color);
}

.return:hover svg path{
    fill: var(--v8-text-active-color);
}


/*表单元素*/
.form-group{
    background-color: var(--v8-form-color);
    padding: 13px 20px 8px;
    width: 100%;
    border: 2px solid var(--v8-base-color);
    position: relative;
}

.form-group label{
    font-family: var(--v8-font-family-title);
    font-size: var(--v8-size-3);
    margin-bottom: 6px;
    color: var(--v8-button-text-color);
}

.form-group label .required{
    color: var(--v8-error-color);
    padding-right: 15px;
}

.icon::after{
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    bottom: 12px;
    width: var(--v8-size-1);
    height: var(--v8-size-1);
    background-size: cover;
    fill: var(--v8-text-color);
}

.form-control{
    border: none!important;
    border-radius: 0;
    background-color: var(--v8-form-color);
    color: var(--v8-text-active-color);
    font-size: var(--v8-size-3);
    width: calc(100% - 32px);
    height: auto;
    padding: 0;
}

input.form-control {
    box-shadow: inset 0 0 0 1000px var(--v8-form-color)!important;
}

input.form-control:focus{
    box-shadow: inset 0 0 0 1000px var(--v8-form-color)!important;
}

select.form-control{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.form-control:focus{
    background-color: var(--v8-form-color);
    color: var(--v8-text-active-color);
    box-shadow: none;
}

.form-control~svg{
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

input:focus,
textarea:focus {
    outline: none!important;
    box-shadow: none!important;
}

input[type="email"]::placeholder,
input[type=password]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
textarea::placeholder {
    color: var(--v8-text-active-color);
}

.custom-select_container{
    position: relative;
}

.custom-select {
    width: 100%;
    border: 2px solid var(--v8-base-color);
    border-radius: 0;
    background: var(--v8-form-color);
    color: var(--v8-button-text-color);
    padding: 0 3rem 0 1rem;
    min-height: 3.5rem;
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

.custom-select:disabled{
    background: var(--v8-form-color);
    color: var(--v8-button-text-color);
}

.custom-select:active{
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.custom-select+.triangle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.5rem;
    pointer-events: none;
}

.custom-select+.triangle svg path{
    fill: var(--v8-base-color);
}

.custom-select:focus{
    border: 2px solid var(--v8-base-color);
    box-shadow: none;
}

a,
a:hover,
a:link,
a:active {
    text-decoration: none;
    outline: none;
    color: var(--v8-text-color);
}

.underline{
    text-decoration-line: underline!important;
}

/*按钮*/
button{
    outline: none;
}

.button {
    background-color: var(--v8-form-color);
    color: var(--v8-button-text-color);
    border: 3px solid var(--v8-base-color);
    padding: 1rem 3rem;
    font-family: var(--v8-font-family-title);
    font-size: var(--v8-size-2);
    text-align: center;
    -webkit-appearance: none;
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
    transition: background-color 0.3s ease, transform 0.5s ease, color 0.3s ease-in-out;
}

.button_wider{
    min-width: 460px;
}

a.button_wider{
    display: inline-block;
}

.button:active{
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.button.active_color{
    background-color: var(--v8-primary-color);
}

.active_color{
    color: var(--v8-text-active-color);
}

svg.active_color path{
    fill: var(--v8-text-active-color);
}

/*按钮悬停*/
.button:hover {
    background-color: var(--v8-primary-color);
    /*color: var(--v8-form-color);*/
    transform: translateY(-10px);
    /*box-shadow: 3px 3px 0px 0px var(--v8-base-color);*/
}

.button.disabled{
    cursor: not-allowed!important;
}
.button.disabled:hover{
    background-color: initial;
    transform: translateY(0);
}

/*按钮点击*/
.button:active {
    background-color: var(--v8-primary-color);
    /*color: var(--v8-text-color);*/
    box-shadow: 3px 3px 0px 0px var(--v8-base-color);
}

.button.disabled:active{
    background-color: initial;
    box-shadow: none;
    cursor: not-allowed!important;
}


/*深色按钮*/
.button.dark-button{
    background-color: var(--v8-base-color);
    color: var(--v8-form-color);
    border: 1px solid var(--v8-form-color);
}

.button.dark-button svg path{
    fill: var(--v8-form-color);
}

/*深色按钮*/
.button.dark-button:hover {
    /*background-color: var(--v8-primary-color);*/
    transform: translateY(-10px);
    /*border: 1px solid var(--v8-base-color);*/
    /*box-shadow: 4px 4px 0px 0px var(--v8-base-color);*/
}

/*深色按钮点击*/
.button.dark-button:active {
    /*background-color: var(--v8-base-color);*/
    transform: translateY(-10px);
    /*border: 1px solid var(--v8-form-color);*/
    box-shadow: 4px 4px 0px 0px var(--v8-form-color);
}

.icon_small_button{
    width: auto;
    min-width: auto;
    height: auto;
    min-height: auto;
    padding: 0;
    line-height: 0;
    border: none;
}

.button.icon_small_button:hover{
    transform: translateY(-4px);
    background-color: initial;
    color: var(--v8-text-active-color);
}

.button.icon_small_button:hover svg path{
    fill: var(--v8-text-active-color);
}

.button.icon_small_button:active{
    box-shadow: none;
    background-color: initial;
}

/*分页按钮*/
.page-item .page-link.page_button{
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    min-height: 3rem;
    padding: 0.5rem;
    line-height: 1;
    border-radius: 0!important;

}

.page-item.active .page-link.page_button{
    background-color: var(--v8-primary-color);
    color: var(--v8-text-color);
    border-color: var(--v8-base-color);
}

.page-link.page_button:hover{
    border-color: var(--v8-base-color);
    color: var(--v8-text-color);
}
.page-link:focus{
    box-shadow: none;
}

.table{
    color: var(--v8-text-color);
}

/*符号按钮*/
.icon-button{
    width: clamp(46px, 3.2vw, 3.625rem);
    min-width: auto;
    height: clamp(46px, 3.2vw, 3.75rem);
    min-height: auto;
    padding: clamp(2px, 0.2vw, 0.5rem);
    line-height: 0;
    color: var(--v8-button-text-color);
}

.icon-button svg path{
    fill: var(--v8-button-text-color);
    stroke: var(--v8-button-text-color);
}

.icon-button img{
    max-height: 1.75rem;
    max-width: 1.75rem;
}

.close_button{
    cursor: pointer;
}

.close_button:hover svg path{
    fill: var(--v8-primary-color);
}

.close_button:active {
    transition: 120ms ease-in-out;
    transform: rotate(135deg);
}

.buttons_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 13rem;
}

.buttons_container .product_count{
    font-family: var(--v8-font-family-title);
    font-size: var(--v8-size-1);
    max-width: 3rem;
}

/*下拉按钮*/
.button_dropdown{
    background-color: var(--v8-form-color);
    color: var(--v8-button-text-color);
    border: 1px solid var(--v8-base-color);
    height: 4.25rem;
    text-align: left;
    width: 100%;
    padding: 0 4rem 0 1.5rem;
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

.button_dropdown:active{
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.button_dropdown+.triangle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    pointer-events: none;
}

.button_dropdown+.triangle svg path{
    fill: var(--v8-base-color);
}

.dropdown-item:focus,
.dropdown-item:hover{
    color: var(--v8-text-color);
    background-color: var(--v8-primary-color);
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

.dropdown-item:active{
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.up_down_arrow{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.up_down_arrow{
    padding-bottom: 10px;
}
.up_down_arrow svg{
    margin-bottom: -10px;
}

/*单选框*/
.radio-group {
    font-family: var(--v8-font-family-text);
    font-size: var(--v8-size-3);
    font-weight: 500;
    /*margin-bottom: 6px;*/
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group input[type="radio"] + label {
    display: inline-block;
    /*cursor: pointer;*/
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
    position: relative;
    padding-left: 25px;
    /*margin-bottom: 10px;*/
}

.radio-group input[type="radio"] + label:active {
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.radio-group input[type="radio"] + label::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--v8-text-color);;
    border-radius: 50%;
    background-color: transparent;
}

.radio-group input[type="radio"] + label::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--v8-primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-group input[type="radio"]:checked + label::after {
    opacity: 1;
}

/*复选框*/
.checkbox-group {
    font-family: var(--v8-font-family-text);
    font-size: var(--v8-size-3);
    font-weight: 500;
    /*margin-bottom: 8px;*/
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-group input[type="checkbox"] + label {
    position: relative;
    padding-left: 25px;
    /*cursor: pointer;*/
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

.checkbox-group input[type="checkbox"] + label:active {
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.checkbox-group input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--v8-text-color);
    box-sizing: border-box;
}

.checkbox-group input[type="checkbox"]:checked + label::before {
    content: "\2714";
    background-color: var(--v8-primary-color);
    text-align: center;
    line-height: var(--v8-size-3);
}

/*下拉菜单样式*/
.dropdown-menu{
    background-color: var(--v8-form-color);
    border: 2px solid var(--v8-base-color);
    padding: 0;
    border-radius: 0;
    min-width: 100%;
}

.dropdown-menu.scroll {
    height: 336px;
    overflow: auto;
}

.dropdown-menu.scroll::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
}

.dropdown-menu.scroll::-webkit-scrollbar-thumb {
    background: var(--v8-primary-color);
    opacity: 0.1;
    border-radius: 50px;
}

.dropdown-item.top_border{
    border-top: 2px solid var(--v8-base-color);
}

.dropdown-item{
    height: 56px;
    line-height: 3;
    padding: 0.25rem 30px;
    color: var(--v8-button-text-color);
}

@media (min-width: 576px){
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        max-width: 620px;
        margin: 1.75rem auto;
    }
}

.modal-content{
    background-color: transparent !important;
    /*padding: 0 3rem;*/
}

.modal-header,
.modal-body{
    background-color: var(--v8-background-color);
    /*background-color: var(--v8-form-color);*/
}

.modal-body span,
.modal-body p{
    font-family: var(--v8-font-family-text);
    color: var(--v8-text-color);
}

.modal-body.has-button{
    padding-bottom: 3rem;
}

.modal-body.modal-body-scrollable{
    max-height: 65vh;
    overflow-y: auto;
}

/*滑块样式*/
.modal-body.modal-body-scrollable::-webkit-scrollbar {
    width: 12px;
    background-color: var(--v8-background-color);
}

.modal-body.modal-body-scrollable::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--v8-background-color);
}

.modal-body.modal-body-scrollable::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--v8-primary-color);
}

.modal-footer{
    position: relative;
    justify-content: center;
    border: none;
    margin-top: -3rem;
    z-index: 2;
    border-radius: 0;
}

.modal-footer .button{
    /*background-color: var(--v8-primary-color);*/
    /*box-shadow: 3px 3px 0px 0px var(--v8-base-color);*/
}

.modal_close_btn{
    cursor: pointer;
}

.modal_close_btn svg path.primary_color{
    fill: var(--v8-primary-color);
}

.modal_close_btn svg path.text_color{
    fill: var(--v8-text-color);
}

.modal_close_btn:hover svg path.text_color,
.modal_close_btn:active svg path.text_color {
    fill: var(--v8-primary-color);
}

.modal_close_btn:active{
    transition: 120ms ease-in-out;
    transform: rotate(135deg);
}

.modal-title{
    flex: auto;
    text-align: center;
    font-family: var(--v8-font-family-title);
}

.modal-header{
    border: solid 2px var(--v8-base-color);
    border-bottom: none;
    border-radius: 0;
}

.modal-body{
    border: solid 2px var(--v8-base-color);
    border-top: none;
    border-radius: 0;
}

.error{
    color: var(--v8-error-color) !important;
    font-weight: bold;
}

hr{
    border-color: var(--v8-text-color);
}

/*下拉select*/
.dropdown{
    /*display: inline-block;*/
}

.dropdown .dropdown_btn{
    display: flex;
    align-items: center;
    background-color: var(--v8-form-color);
    height: 4.25rem;
    line-height: 4.25rem;
    padding: 0 1.8rem;
    border: solid 1px var(--v8-base-color);
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

.dropdown .dropdown_btn:active {
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.dropdown_btn .dropdown_btn_content{
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.dropdown .dropdown_btn svg{
    margin-left: 2rem;
}

.dropdown-toggle::after{
    content: none;
}

.dropdown-menu{
    background-color: var(--v8-form-color);
    border: solid 1px var(--v8-base-color);
    margin: 0;
}

.dropdown-menu li {
    white-space: nowrap;
    height: 4.25rem;
    padding: 0 1rem;
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

.dropdown-menu li:active {
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

.dropdown-menu li:hover{
    background-color: var(--v8-primary-color);
}

/**
 * @author: jinlei
 * @date: 20210806
 * @description: 加载时的遮罩
 */

.loading-backdrop {
    display: none;
    align-items: center;
    justify-content: center;
    align-content: center;
    position: absolute;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
}

.img-90{
    max-width: 90px;
    max-height: 90px;
}

input:focus-visible,
select:focus-visible{
    outline: none;
}

.donut {
    display: inline-block;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-left-color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    animation: donut-spin 1.2s linear infinite;
}

@Keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container.container_wider{
    max-width: 800px;
    background-color: var(--v8-form-color);
    border: 2px solid var(--v8-base-color);
    margin-bottom: 6rem;
}
.container.container_wider .middle_inner_container{
    padding: 1.5rem 3rem 2rem 3rem;
}

.middle_container{
    display: flex;
    flex-direction: column;
    background-color: var(--v8-form-color);
    max-width: 800px;
    /*margin: 2rem 31% 6rem;*/
    margin: 2rem auto 6rem;
    border: 2px solid var(--v8-base-color);
}

.middle_container .middle_inner_container{
    padding: 1.5rem 3rem 2rem 3rem;
    width: 100%;
}

.middle_container.large_padding .middle_inner_container{
    padding: 1.5rem 5rem 2rem 5rem;
}

.middle_container.half_button{
    position: relative;
    padding-bottom: 2rem;
}

.middle_container.none_border{
    border: none;
}

.middle_container.none_border .middle_inner_container{
    padding-top: 0;
}

.middle_container.transparent_background{
    /*padding: 1.5rem 5rem 2rem 5rem;*/
    background-color: transparent;
}

.middle_container.has_return,
.container.has_return{
    margin-top: -1.5rem;
}

@media (max-width: 1200px){
    .container.has_return{
        margin-top: 1.5rem;
    }
}

@media (max-width: 992px) {
    .middle_container {
        margin: 2rem 20% 6rem;
    }
    .middle_container.has_return{
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .middle_container {
        margin: 2rem 10% 6rem
    }
    .middle_container.has_return{
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .middle_container {
        margin: 2rem 5% 6rem
    }
    .middle_container.has_return{
        margin-top: 1.5rem;
    }
}

.middle_container .middle_title{
    padding: 0 3rem;
}

.middle_container .middle_content{
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.middle_container .middle_content p{
    margin-bottom: 0;
}

.middle_container .middle_img{
    text-align: center;
}

.gif_success {
    max-width: 220px;
    max-height: 220px;
}

.middle_button_container{
    text-align: center;
    margin-top: 1rem;
}

.half_button .middle_button_container{
    display: flex;
    justify-content: center;
    position: absolute;
    width: calc(100% - 6rem);
    bottom: -2.25rem;
    margin-top: 0;
}

.table thead th{
    border: none;
}

.table-hover tbody tr:hover td {
    background-color: var(--v8-form-color);
}
.table-hover tbody tr:hover .order_info_td {
    color: var(--v8-text-active-color);
    text-decoration: underline;
}

.table_edit tbody tr:hover .order_info_td {
    cursor: url(../image/curseur.svg) 0 18, pointer !important;
}

.table_edit tbody tr:active .order_info_td {
    cursor: url(../image/curseur_click.svg) 0 18, pointer !important;
}

#mustSauceWarning.size-4{
    font-size: 14px !important;
}

#productOptionsContainer .option-radio .radio-group input[type="radio"] + label::before {
    top: 2px;
    transform: translateY(0px);
}
