@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&family=Montserrat:ital,wght@0,100;1,100&display=swap');

@font-face {
    font-family: "ploni";

    src: url('../fonts/woff2/ploni-black-aaa.woff2') format('woff2'),
         url('../fonts/woff/ploni-black-aaa.woff') format('woff'), 
         url('../fonts/ttf/ploni-black-aaa.ttf') format('truetype');
         

    font-weight: bold;
}
@font-face {
    font-family: "ploni";

    src: url('../fonts/woff2/ploni-medium-aaa.woff2') format('woff2'),
         url('../fonts/woff/ploni-medium-aaa.woff') format('woff'),
         url('../fonts/ttf/ploni-medium-aaa.ttf') format('truetype');

    font-weight: 600;
}
@font-face {
    font-family: "ploni";

    src: url('../fonts/woff2/ploni-light-aaa.woff2') format('woff2'),
         url('../fonts/woff/ploni-light-aaa.woff') format('woff'),
         url('../fonts/ttf/ploni-light-aaa.ttf') format('truetype');

    font-weight: normal;
}


*{
    font-family: Assistant;
    font-weight: normal;
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: 0;
}

:root {
    --darkBlue: #064471;
    --blue: #0038B8;
    --blueOpacity: #2B90A3;
    --pink: #EE392A;
    --green: #64FF41;
    --greenLight: #EDFFE9;
    --redLight: #FFE9E9;
    --gray: #2a2b2c;
    --grayBright: #F8F8F8;
    --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

body{
    margin: 0;
    padding: 0; 
    background-color: white;
}

h1{
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 50px;
    color: var(--blue);
}

h2{
    padding: 0;
    margin: 0;
    font-family: ploni;
    font-weight: normal;
    font-size: 30px;
    color: white;
}

h2 span{
    color: var(--green);
}


h4{
    padding: 0;
    margin: 0;
    font-family: ploni;
    font-weight: 600;
    font-size: 30px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 50px;
}

h4 span{
    font-weight: bold;
    color: var(--pink);
}

p{
    font-size: 20px;
    font-weight: 500;
}

p span{
    font-weight: bold;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: black;

    width: 100%;
}

section{
    margin: 0;
    padding: 0; 
}

div{
    margin: 0;
    padding: 0; 
}

img{
    width: 100%;
    height: auto;
}

/* Chrome, Safari, Edge, Opera  הסתרת חיצים שדה מספר */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* start btn*/
.btnNew{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btnNewMargin{
    margin-top: 25px;
}

.btnNew .btnNew-modal{
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    border: none;
    border-radius: 15px;
    transition: .3s;
    color: var(--gray);
    outline: none;
    background-color: var(--darkBlue);
    border: 2px solid  #064471;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.btnNew .btnNew-red{
    color: wh;
    background-color: var(--pink);
    border: 2px solid  #EE392A;
}

.btnNew .btnNew-modal:hover{    
    color: #064471;
    background-color: transparent;
    border: 2px solid  #064471;

    box-shadow: none;
}

.btnNew .btnNew-red:hover{
    color: #EE392A;
    background-color: transparent;
    border: 2px solid  #EE392A;
    box-shadow: none;
}

/* start */

/* הגדרות אתר */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000075;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-in;
    z-index: 999999999;
    backdrop-filter: blur(5px);
}
  
.modal.is-visible {
    visibility: visible;
    opacity: 1;
}
  
.modalDialog {
    position: relative;
    width: 500px;
    overflow-y: scroll;
    border-radius: 10px;
    background: white;
    overflow: auto;
    cursor: default;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    max-width: 90%;
    max-height: 98%;
}

.modalDialogFull {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: none;
    border-radius: 0px;
    background: var(--blueOpacity);
    overflow: auto;
    cursor: default;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    max-height: 100%;
}

.modalDialogsuccess {
    background: var(--green);
}

.modalDialogWhite {
    background: white;
    justify-content: flex-start;
    padding: 60px 0px;
}

[data-animation="slideInOutLeft"] .modalDialog {
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s var(--bounceEasing);
}
  
[data-animation="slideInOutLeft"].is-visible .modalDialog {
    opacity: 1;
    transform: none;
    transition-delay: 0.2s;
}
  
.modalDialog .closeModal{
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 99999;
}

.modalDialog .closeModal .close-modal{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    border: none;
    border-radius: 50%;
    transition: .3s;
    color: #c2c7cc;
    outline: none;
    background-color: transparent;
    border: 1px solid #c2c7cc;
    cursor: pointer;
}

.modalDialog .closeModal .close-modal:before, .modalDialog .closeModal .close-modal:after {
    position: absolute;
    width: 20px;
    height: 1px;
    top: 50%;

    content: '';
    background:#c2c7cc;
    transition: all ease 1s;
}
  
.modalDialog .closeModal .close-modal:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
  
.modalDialog .closeModal .close-modal:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modalDialog .closeModal .close-modal:hover::after{
    background: red;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.modalDialog .closeModal .close-modal:hover::before{
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    background: red;
}

.modalDialog .closeModal .close-modal:hover{
    background: #f26a3d34;
    border: 1px solid red;
}

/* start */
.modalDialogFull .startModal{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.modalDialogFull .startModal .start-modal{
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    border: none;
    border-radius: 15px;
    transition: .3s;
    color: var(--gray);
    outline: none;
    background-color: white;
    border: 2px solid  white;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.modalDialogFull .startModal .start-modal:hover{
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    border: none;
    transition: .3s;
    color: white;
    outline: none;
    background-color: transparent;
    border: 2px solid  white;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;

    box-shadow: none;
}
/* start */

.btn{
    display: flex;
    justify-content: center;
    column-gap: 0px;
    align-items: center;
    background-color: var(--blue);
    border-radius: 50px;
    border: none;
    transition: .2s;
    cursor: pointer;
    padding: 15px 30px;
}

.btn:hover{
    transform: scale(.955);
    transition: .2s;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.btn .text{
    font-family: ploni;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.btn .icon{
    display: flex;
    justify-content: left;
    align-items: center;
}

.btn .icon img{
    width: 60%;
    height: auto;
}

.btnGreen{
    background-color: #42ff8a;
}

.btnGray{
    background-color: var(--gray);
}

.btnPink{
    background-color: var(--pink);
}

.btnWhite{
    background-color: white;
}

.btnWhite .text{
    color: var(--gray);
}

.btnGradient{
    background: linear-gradient(270deg, #0D3388 0%, #0D42BC 100%);
}

.btnOpacity{
    background-color: rgba(255, 66, 119, 0.51);
    border: 2px solid var(--pink);
}

.btnOpacity .text{
    color: white;
}

.marker{
    position: relative;

    font-family: ploni;
    font-weight: bold;
    font-size: 40px;
    color: white;
}

.marker::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 105%;
    height: 90%;
    
    background-color: var(--blueOpacity);
    z-index: -8;
}

input{
    border: none;
    outline: none;
    --webkit-appearance: none;
}
  
input:focus-visible{
    border-color: var(--blue);
    transition: .3s;
}

select {
    appearance: none;
    outline: 15px red;
    border: 0;
    box-shadow: none;
    flex: 1;
    padding: 15px 60px;
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
    background-color: var(--blueOpacity);
    color: white;
    background-image: none;
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

.select {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    background-color: var(--blueOpacity);
    transition: .25s all ease;
    pointer-events: none;
    color: white;
}

.select:hover::after {
    color: var(--gray);
}

input[type="text"], input[type="number"], input[type="password"]{
    border-radius: 15px;
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #298ca0;
}

input[type="text"], input[type="number"], input[type="password"]::placeholder {
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
}
  
input[type="text"], input[type="number"], input[type="password"]::-ms-input-placeholder {
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
}

.dataId{
    display: none;
}

/**/

.bg{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding-top: 80px;
    gap: 20px;
}

.bgStore{
    padding-top: 0px;
    gap: 20px;
}

.bg .credit-card{
    width: 400px;
    height: 230px;
    background-color: var(--blueOpacity);
    background: linear-gradient(270deg, #2B90A3 0%, #2B90A3 100%);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.bg .credit-card::before{
    content: '';
    display: inline-block;
    width: 170px;
    height: 30px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 50px;
    rotate: -20deg;
    background-color: #3295a8;
    position: absolute;
    right: -50;
    top: 70;
}

.bg .credit-card::after{
    content: '';
    display: inline-block;
    width: 170px;
    height: 30px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 50px;
    rotate: -20deg;
    background-color: #298ca0;
    position: absolute;
    right: -50;
    top: 115;
}

.bg .credit-card .iconRead{
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    color: white;
    font-family: ploni;
    font-size: 15px;
    padding: 3px 20px;
    background-color: var(--pink);
    border-radius: 5px 5px 0px 0px;
}

.bg .credit-card .iconSale{
    width: 80px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.bg .credit-card .credit-title{
    font-family: ploni;
    font-weight: 600;
    font-size: 20px;
    color: white;

    position: absolute;
    right: 20px;
    top: 20px;
}

.bg .credit-card .credit-data{
    font-family: ploni;
    font-weight: 600;
    font-size: 20px;
    color: white;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.bg .credit-card .credit-data h5{
    font-family: ploni;
    font-weight: 500;
    font-size: 25px;
    color: white;
    margin: 0;
    text-align: center;
}

.bg .credit-card .credit-data h6{
    font-weight: 200;
    font-size: 35px;
    color: white;
    margin: 0;
    text-align: center;
    letter-spacing: 10px;
}

.bg .register-form{
    width: 400px;
    padding-bottom: 30px;
}

.bg .register-form form{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin: 0;
    gap: 22px;
    width: 100%;
}

.bg .register-form form .input{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.bg .register-form form .input .labels{
    display: flex;
    gap: 10px;
}

.bg .register-form form .input .labels .label{
    font-size: 16px;
    font-weight: 600;
    color: #565758;
}

.bg .register-form form .input .labels .labelRed{
    font-size: 16px;
    font-weight: bold;
    color: var(--pink);
}


header{
    width: 100%;
    height: 100px;
    background-color: var(--grayBright);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 80px;
    z-index: 9999999;

    border-radius: 0px 0px 15px 15px;
}

header .logo{
    width: 400px;
    height: auto;
}

header .logo img{
    width: 100%;
    height: auto;
}

header .headerMenu{
    display: flex;
    justify-content: space-around;
    column-gap: 20px;
    align-items: center;
}

.title{
    margin-top: 100px;
    padding: 50px 15px;
    text-align: center;

    font-family: ploni;
    font-weight: bold;
    font-size: 40px;
    color: var(--darkBlue);
    line-height: 45px;
}

.hero{
    width: 100%;
    background-color: var(--grayBright);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 15px;
}

.hero .subTitle{
    font-family: ploni;
    font-weight: 600;
    font-size: 20px;
    color: var(--darkBlue);
    text-align: center;

    line-height: 20px;
}

.hero .subTitle span{
    font-family: ploni;
    font-weight: bold;
}

.hero .lists{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.hero .lists .list{
    width: 300px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 31px 0px rgba(0, 0, 0, 0.053);
    padding: 10px;
    text-align: center;
    transition: .2s;

    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: stretch;
}


.hero .lists .list:hover{
    box-shadow: none;
    transition: .2s;
}

.hero .lists .list .banner{
    width: 100%;
    height: 190px;
    background-color: #0038B8;
    border-radius: 10px;
}

.hero .lists .list .banner img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-position: center;
    object-fit: cover;
}

.hero .lists .dataName{
    font-family: ploni;
    font-weight: normal;
    font-size: 20px;
    line-height: 25px;
    color: white;
    margin-top: 15px;
}

.hero .lists .dataSubName{
    font-family: ploni;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    color: var(--darkBlue);
    margin-top: 15px;
    padding: 0px 15px;
}

.hero .lists .btnRegister{
    margin-top: 15px;
}

footer{
    text-align: center;
    font-family: ploni;
    font-weight: 600;
    font-size: 18px;
    color: var(--pink);
    padding: 15px 0px;
}

.modal .modalDialog .formLogin{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.modal .modalDialog .formLogin .checboxs{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.modal .modalDialog .formLogin .checboxs input[type="checkbox"]{
    width: 15px;
    height: 15px;
    padding: 25px;
}

.modal .modalDialog .formLogin .checboxs label{
    font-weight: 700;
    color: var(--pink);
    font-size: 18px;
}

.modal .modalDialog .formLogin button{
    margin-top: 25px;
}

.modal .modalDialog p{
    font-family: ploni;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: var(--darkBlue);
    margin-top: 5px;
    padding: 0px 15px;
}

.listIndex{
    height: 400px;
    overflow-y: scroll;
    margin-top: 20px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    text-align: right;

    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 3px solid var(--blue);
    border-top: 3px solid var(--blue);
    padding: 15px;
    border-radius: 10px;
}

.listBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.storeBox{
    width: 85%;
    padding: 20px 0px;
    width: 550px;
    margin-top: 50px;
}

.storeBox .storeProudact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 100px;
}

.storeBox .storeProudact .proudactBox{
    width: 100%;
    background-color: #298ca021;
    padding: 20px;
    padding-bottom: 30px;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.storeBox .storeProudact .proudactBox .pro_img{
    position: absolute;
    top: -15;
    left: -15;
    width: 200px;
    height: 200px;
    overflow: hidden;
    rotate: -30deg;
}

.storeBox .storeProudact .proudactBox .pro_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.storeBox .storeProudact .proudactBox .formData{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0px;
    width: 100%;
}

.storeBox .storeProudact .proudactBox .pro_title{
    font-weight: 600;
    font-size: 18px;
    text-align: right;
    font-family: ploni;
}

.storeBox .storeProudact .proudactBox .pro_price{
    font-weight: 600;
    font-size: 18px;
    text-align: right;
    font-family: ploni;
}

.storeBox .storeProudact .proudactBox .pro_units{
    font-weight: 500;
    font-size: 15px;
    text-align: right;
    margin-top: 15px;
}

.storeBox .storeProudact .proudactBox .pro_label{
    font-weight: 500;
    font-size: 15px;
    text-align: right;
    background-color: white;
    padding: 10px 20px;
    padding-bottom: 15px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.storeBox .storeProudact .proudactBox .btnProudact{
    position: absolute;
    bottom: 0;
    right: 0%;
    transform: translate(-50%, 100%);

    width: 50%;
    padding: 10px;
}

.storeBox .storeProudact .proudactBox .user_units {
    appearance: none;
    outline: 15px red;
    border: 0;
    box-shadow: none;
    flex: 1;
    padding: 5px 15px;
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
    border: 2px solid #2a2b2c;
    color: var(--gray);
    background-image: none;
    border-radius: 5px;
    cursor: pointer;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    width: 70px;
    text-align: center;
}


.storeBox .storeProudact .proudactBox .user_units::after {
    color: var(--gray);
}

/*admin*/
.storeBox{
    width: 85%;
    padding: 20px 0px;
    width: 550px;
    margin-top: 50px;
}

.storeDivide{
    width: 85%;
    padding: 20px 0px;
    margin-top: 0px;
}

.storeBox .storeProudact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 100px;
}

.storeDivide .storeProudact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.storeDivide .storeProudact .student_admin .proudactBox{
    width: 100%;
    background-color: #298ca021;
    padding: 10px 20px;
    padding-bottom: 0px;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.storeBox .storeProudact .student_admin .proudactBox .pro_img{
    position: absolute;
    top: -15;
    left: -15;
    width: 200px;
    height: 200px;
    overflow: hidden;
    rotate: -30deg;
}

.storeBox .storeProudact .student_admin .proudactBox .pro_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.storeDivide .storeProudact .student_admin .proudactBox .formData{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 100%;
}

.storeDivide .storeProudact .student_admin .proudactBox .pro_title{
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    font-family: Assistant;
}

.storeDivide .storeProudact .student_admin .formDivide .pro_label .teach_divide{
    all: revert;
    appearance: auto;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #2a2b2c;
}

.storeDivide .storeProudact .student_admin .formDivide .btnDivide{
    all: revert;

    width: 100%;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    border: none;
    border-radius: 5px;
    transition: .3s;
    color: var(--gray);
    outline: none;
    background-color: var(--darkBlue);
    border: 2px solid #064471;
    cursor: pointer;
    font-size: 15px;
    color: white;
    box-shadow: rgba(99, 99, 99, 0.2)
}

.storeDivide .storeProudact .student_admin .formDivide .btnDivide:hover{
    transition: .3s;
    background-color: white;
    border: 2px solid #064471;
    color: var(--darkBlue);
}

.storeBox .storeProudact .student_admin .proudactBox .user_units {
    appearance: none;
    outline: 15px red;
    border: 0;
    box-shadow: none;
    flex: 1;
    padding: 5px 15px;
    color: var(--gray);
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
    border: 2px solid #2a2b2c;
    color: var(--gray);
    background-image: none;
    border-radius: 5px;
    cursor: pointer;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    width: 70px;
    text-align: center;
}


.storeBox .storeProudact .student_admin .proudactBox .user_units::after {
    color: var(--gray);
}

.storeDivide .storeProudact .student_admin .proudactBox .btnProudact{

}

.storeDivide .storeProudact .student_admin{
    width: 100%;
    display: flex;
    overflow-x: scroll;
    gap: 15px;
}

.storeDivide .storeProudact .student_name{
    padding: 0;
    margin: 0;
    font-weight: bold;
    font-size: 20px;
    color: var(--gray);
    text-align: center;
    margin-top: 15px;
}

.storeDivide .storeProudact .student_admin {
    width: 100%;
    height: 100%;
    overflow: scroll;
    border: 1px solid #777777;
}
  
.storeDivide .storeProudact .student_admin table {
    border-spacing: 0;
    width: 100%;
    border-collapse: collapse;
}
  
.storeDivide .storeProudact .student_admin th {
    border-left: none;
    border-right: 1px solid #bbbbbb;
    padding: 10px;
    width: 80px;
    min-width: 80px;
    position: sticky;
    top: 0;
    background: white;
    color: var(--gray);
    font-weight: bold;

    white-space: nowrap;
}
 
.storeDivide .storeProudact .student_admin tr .thMain{
    position: sticky;
    top: 0;
    z-index: 999;
}

.storeDivide .storeProudact .student_admin td {
    border-left: none;
    border-right: 1px solid #bbbbbb;
    border-bottom: 1px solid #bbbbbb;
    padding: 5px;
    width: 80px;
    min-width: 80px;

    white-space: nowrap;
}

.storeDivide .storeProudact .student_admin tr:nth-child(even)
{background-color: #e5e5e5;}

.storeDivide .storeProudact .student_admin th:nth-child(1),
.storeDivide .storeProudact .student_admin td:nth-child(1) {
    position: sticky;
    right: 0;
    color: #2a2b2c;
    font-weight: 500;
    padding: 10px;

    background-color: #e5e5e5;
} 

.storeDivide .storeProudact .student_admin th:nth-child(0),
.storeDivide .storeProudact .student_admin td:nth-child(0) {
    background-color: #2a2b2c;
} 

.storeDivide .storeProudact .student_admin td .formDivide{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
    margin: 0px;
}
  
.storeDivide .storeProudact .student_admin{
    max-height: 90vh;
}

/*admin*/

/* alert popup*/
.alertPopUp{
    position: fixed;
    top: 0;
    width: 400px;
    z-index: 9999;
}

.alert {
    padding: 20px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 0px 0px 10px 10px;

    animation: fadeOut 2s ease-in-out forwards;
}

.alert_error{
    background-color: #EE392A;
}

.alert_secc{
    background-color: #42ff8a;
}


@keyframes fadeOut {
  0% { opacity: 1; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}


  
.alert strong{
    font-size: 15px;
    font-weight: 600;
}

.closebtn {
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;

    position: absolute;
    top: 50%;
    left: 35px;
    transform: translate(-50%, -50%);
}
  
.closebtn:hover {
    color: black;
}

.classBox{
    display: flex;
    gap: 10px;
    width: 400px;
    flex-wrap: wrap;
}

@media all and (max-width: 750px){
    header {
        padding: 0px 25px;
    }

    header .logo {
        width: 350px;
        height: auto;
    }

    .title {
        padding: 35px 10px;
        font-size: 30px;
        line-height: 35px;
    }

    .marker{
        font-size: 30px;
    }

    .hero {
        padding: 20px 10px;
    }

    .hero .subTitle {
        font-size: 18px;
        line-height: 18px;
    }

    .hero .lists {
        gap: 25px;
    }

    .hero .lists .list {
        width: 80%;
    }

    footer {
        font-size: 15px;
        padding: 10px 0px;
    }

    .modal .modalDialog .formLogin .checboxs input[type="checkbox"]{
        padding: 0px;
        width: 10px;
        height: 10px;
    }

    .storeBox .storeProudact .proudactBox{
        width: 85%;
    }
    
    .storeBox .storeProudact .student_admin .proudactBox{
        width: 85%;
    }

    .storeDivide{
        width: 95%;
        padding: 20px 0px;
        margin-top: 0px;
    }

}

@media all and (max-width: 500px){
    h4{
        padding: 0;
        margin: 0;
        font-family: ploni;
        font-weight: 600;
        font-size: 30px;
        color: var(--gray);
        text-align: center;
        margin-bottom: 30px;
    }

    .modalDialog {
        width: 95%;
        padding: 60px 10px;
        max-width: 95%;
    }

    .modalDialogFull {
        width: 100%;
        padding: 60px 10px;
        max-width:100%;
    }

    .modalDialogWhite {
        padding: 60px 0px;
    }
    
    .btn .text {
        font-family: ploni;
        font-size: 15px;
        font-weight: 600;
        color: white;
    }

    .btn .icon img {
        width: 55%;
        height: auto;
    }

    .marker{
        font-size: 20px;
    }
    
    header {
        padding: 0px 15px;
        height: 80px;
    }

    header .logo {
        width: 300px;
        height: auto;
    }

    .title {
        margin-top: 80px;
        padding: 30px 10px;
        font-size: 20px;
        line-height: 25px;
    }

    .listBtn{
        align-items: stretch;
        gap: 20px;
        flex-direction: column;
    }

    .bg{
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        padding-top: 50px;
        gap: 15px;
    }

    .bgStore{
        padding-top: 0px;
        gap: 20px;
    }

    .bg .credit-card{
        width: 85%;
        height: 180;
        padding: 10px;
    }
    
    .bg .credit-card::before{
        width: 150px;
        height: 30px;
    }
    
    .bg .credit-card::after{
        width: 150px;
        height: 30px;
    }
    
    .bg .credit-card .iconSale{
        width: 50px;
        position: absolute;
        left: 15px;
        top: 15px;
    }
    
    .bg .credit-card .credit-title{
        font-family: ploni;
        font-weight: 600;
        font-size: 15px;
        color: white;
    
        position: absolute;
        right: 15px;
        top: 15px;
    }
    
    .bg .credit-card .credit-data{
        font-size: 18px;
        gap: 5px;
    }
    
    .bg .credit-card .credit-data h5{
        font-size: 25px;
    }
    
    .bg .credit-card .credit-data h6{
        font-weight: 200;
        font-size: 35px;
        color: white;
        margin: 0;
        text-align: center;
        letter-spacing: 10px;
    }

    .bg .register-form{
        width: 85%;
        padding-bottom: 30px;
    }
    
    .bg .register-form form{
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        margin: 0;
        gap: 22px;
        width: 100%;
    }
    
    .bg .register-form form .input{
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    .bg .register-form form .input .label{
        font-size: 16px;
        font-weight: 600;
        color: #565758;
    }

    .storeBox{
        width: 80%;
        padding: 20px 0px;
    }

    .storeBox .storeProudact .proudactBox{
        width: 100%;
        background-color: #298ca021;
        padding: 20px;
        padding-bottom: 30px;
        border-radius: 5px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }

    .storeBox .storeProudact .proudactBox .pro_title{
        font-size: 15px;
    }

    .storeBox .storeProudact .proudactBox .pro_price{
        font-size: 15px;
    }

    .storeBox .storeProudact .proudactBox .pro_img {
        position: absolute;
        top: -5;
        left: -5;
        width: 130px;
        height: 130px;
    }

    .storeBox .storeProudact .proudactBox .btnProudact {
        position: absolute;
        bottom: 0;
        right: 0%;
        transform: translate(0%, 100%);
        width: 100%;
        padding: 10px;
    }

    .storeBox .storeProudact .proudactBox .pro_label {
        font-weight: 500;
        font-size: 13px;
        text-align: right;
        background-color: white;
        padding: 0px 10px;
        padding-bottom: 10px;
        border-radius: 5px;
        margin-top: 10px;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 10px;
    }

    .storeBox .storeProudact .proudactBox .user_units {
        appearance: none;
        outline: 15px red;
        border: 0;
        box-shadow: none;
        flex: 1;
        padding: 5px 10px;
        color: var(--gray);
        font-size: 13px;
        font-weight: 600;
        background-color: transparent;
        border: 2px solid #2a2b2c;
        color: var(--gray);
        background-image: none;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: hidden;
        margin-top: 10px;
        text-align: center;
    }

    /*admin*/
    .storeBox{
        width: 80%;
        padding: 20px 0px;
    }

    .storeBox .storeProudact .student_admin .proudactBox{
        width: 100%;
        background-color: #298ca021;
        padding: 20px;
        padding-bottom: 30px;
        border-radius: 5px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }

    .storeBox .storeProudact .student_admin .proudactBox .pro_title{
        font-size: 15px;
    }

    .storeBox .storeProudact .student_admin .proudactBox .pro_price{
        font-size: 15px;
    }

    .storeBox .storeProudact .student_admin .proudactBox .pro_img {
        position: absolute;
        top: -5;
        left: -5;
        width: 130px;
        height: 130px;
    }

    .storeBox .storeProudact .student_admin .proudactBox .btnProudact {
        position: absolute;
        bottom: 0;
        right: 0%;
        transform: translate(0%, 100%);
        width: 100%;
        padding: 10px;
    }

    .storeBox .storeProudact .student_admin .proudactBox .pro_label {
        font-weight: 500;
        font-size: 13px;
        text-align: right;
        background-color: white;
        padding: 0px 10px;
        padding-bottom: 10px;
        border-radius: 5px;
        margin-top: 10px;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 10px;
    }

    .storeBox .storeProudact .student_admin .proudactBox .user_units {
        appearance: none;
        outline: 15px red;
        border: 0;
        box-shadow: none;
        flex: 1;
        padding: 5px 10px;
        color: var(--gray);
        font-size: 13px;
        font-weight: 600;
        background-color: transparent;
        border: 2px solid #2a2b2c;
        color: var(--gray);
        background-image: none;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: hidden;
        margin-top: 10px;
        text-align: center;
    }
    /*admin*/

    .alertPopUp{
        position: fixed;
        top: 0;
        width: 60%;
        z-index: 9999;
    }

    .alert {
        padding: 15px;
    }
    
    .closebtn {
        font-size: 25px;
    }
      
    .alert strong{
        font-size: 18px;
        font-weight: 600;
    }

    .classBox{
        display: flex;
        gap: 5px;
        width: 85%;
        flex-wrap: wrap;
    }

    .storeDivide{
        width: 90%;
        padding: 20px 0px;
        margin-top: 0px;
    }

    .storeDivide .storeProudact .student_admin{
        max-height: 80vh;
    }
}