:root {
  --background: #eceff1;
  --primary-dark: #214b82;
  --primary: #407d97;
  --secondary-dark: #B87D00;
  --secondary: #FFBE30;
  --secondary-light: rgb(252, 224, 165);
  --verejne-brusleni: #f7caac;
  --pronajem: #c5e0b3;
  --nejmensi: #fff2cc;
  --hokej: #ffe599;
  --text: #000;
  --text-on-primary: #fff;
  --text-on-secondary: #fff;
  --red: #f33d3a;

    --blue-dark: #006D8F;
    --blue: #009BCB;
    --blue-light: #1FCBFF;
    --yellow-dark: #ccbe00;
    --yellow: #FFED00;
    --yellow-light: #fff45c;
    --orange-dark: #b13c15;
    --orange: #e7511e;
}

main{
    animation: appear 200ms ease-in;
}

@keyframes appear {
    0% {
      opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes loading {
    0% {
      transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.loading.show img{
    animation: loading 1000ms cubic-bezier(.79,.14,.15,.86) infinite;
    width: 100px;
}
#step-one .loading.show,
.loading.show{
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading{
    display: none;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.164);
}

.ticket .loading{
    top: 0;
    left: 0;
    color: #fff;
}

noscript{
    width: 100%;
    text-align: center;
    background-color: red;
    padding: 20px;
    color: white;
    font-size: 20px;
}

html,body{
    margin: 0;
    padding: 0;
    font-family: "Roboto",sans-serif;
}

body{
    background-color: var(--background);
    min-height: 100vh;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}

*{
    box-sizing: border-box;
}

.header{
    width: 100%;
    padding: 1rem;
    background-color: #fff;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary-dark);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.row.logo{
    flex: 1;
}

.inside-header,
.inside-footer{
    width: 80%;
}

.inside-header{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.material-icons-round{
    color: var(--text-on-primary);
}

footer{
    width: 100%;
    margin-top: auto;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.main-nav{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    width: 100%;
}
.main-nav-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    width: 100%;
}
.main-nav-list li{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    list-style: none;
    align-items: center;
    transition: 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
  
a{
    color: var(--primary-dark);
}

a:hover{
    color: var(--secondary);
}
  
main{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.nav-link{
    padding: 10px;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 250ms;
    text-decoration: none;
    color: var(--primary-dark);
}
.logout .nav-link{
    color: var(--red);
}

.nav-link:hover{
    color: var(--primary);
    text-shadow: 0px 1px 5px rgba(149, 157, 165, 0.2);
}

.main-nav-list li:hover{
    border-bottom: 1px solid var(--primary-dark);
    transition: cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.main-nav-list li.logout:hover{
    
}

.main-nav-list li.logout{
    color: var(--secondary);
}

.table tr{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    padding: 5px;

}
.table thead tr{
    border-bottom: 1px solid var(--secondary);
}

.table tbody tr:nth-child(2n){
    background-color: rgb(196, 196, 196);
}

.table td,
.table th{
    flex:1;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.table{
    display: table;
    width: 100%;
}

#logo{

    height: 100%;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
}

.web-title{
    color: var(--secondary);
    margin-left: 10px;
}

.form-group.checkbox .form-label{
    margin: 0;
}

.form-field.checkbox{
    margin: 0 5px 0 0;
}

.web-title-text{
    font-size: 44px;
    color: var(--background);
    font-weight: bold;
    -webkit-text-stroke: 1px var(--primary-dark);
    position: relative;
    z-index: 2;
}

.row{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    
}

.row.justify-end{
    justify-content: end;
    -webkit-justify-content: flex-end;
}

.row.justify-evenly{
    justify-content: space-evenly;
}

.row.justify-center{
    justify-content: center;
    -webkit-justify-content: center;
}

.row.justify-between{
    justify-content: space-between;
}
.row.wrap{
    flex-wrap: wrap;
}

.row.align-center{
    align-items: center;
}

#logo img{
    height: 50px;
}

#vstupenky h1{
    font-size: 17px;
    margin: 0;
}

#vstupenky section{
    width: 50%;
}

.kredity{
    padding: 10px;
}

.message{
    margin-bottom: 5px;
}

.message.error{
    color: #f00;
}

h2,h1{
    margin-top: 0;
}

.space-divider{
    border: none;
    height: 1px;
    background-color: var(--secondary);
}

section{
    background-color: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    width: 80%;
    border: 1px solid #d5d5d5;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    
    
}

/* .week-arrow{
    font-size: 32px;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.week-arrow:hover{
    color: var(--secondary);
} */


.small{
    width:40%;
}

main{
    width: 100%;
}

.form-fields{
    width: 60%;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    flex-direction: column;
    margin: auto;
}


#home-inner{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    flex-wrap: wrap;
}

#step-two .form-fields {
    max-width: 500px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--primary-dark);
}

.forgot-pw{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    justify-content: center;
}

.form-group {
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    flex-direction: column;    
    margin-bottom: 10px;
}

.form-field {
    border-radius: 14px;
    border: none;
    background-color: var(--background);
    padding: 8px;
}

.m-0{
    margin: 0;
}

.form-group.checkbox{
    flex-direction: row;
}

.form-label{
    margin-bottom: 5px;
}

#click-hint{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 14px;
    padding: 7px;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    flex-direction: column;
    color: #fff;
    top: 60px;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    animation: pop-up-2 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
@supports (backdrop-filter: blur()) {
    #click-hint {
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}
#click-hint div{ 
    -webkit-align-self: flex-end;
    align-self: flex-end;
}
#click-hint p{ 
    text-align: center;
}

.btn.btn-submit{
    background-color: var(--primary);
    min-width: 100px;
    transition: 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);

}
.btn-group{
    margin-top: auto;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    justify-content: space-between;
}

.btn .material-icons-round{
    padding: 8px;
}

.btn.nav{
    padding: 0;
}

.btn,
.cookie-bar__btn{
    /* cursor: pointer;
    border: none;
    border-radius: 14px;
    padding: 10px 20px;
    margin: 10px 0 10px 0;
    font-size: 1rem; */
    
    text-transform: uppercase;
    padding: 10px;
    border-radius: 14px;
    background-color: var(--primary);
    border: none;
    cursor: pointer;
    color: var(--text-on-primary);
    transition: cubic-bezier(0.4, 0, 0.2, 1) 250ms;
    position: relative;
}

.btn.qr-download{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0;
    font-size: 12px;
    visibility: hidden;
    z-index: 10;
    margin: 0;
    margin: 0;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20,20,20,0.5);
    border-radius: 0;
}

.btn.qr-download:hover{
    background-color: rgba(20,20,20,1);
    color: #fff;
}

.qr:hover .qr-download{
    visibility: visible;
}

.btn:disabled{
    cursor: not-allowed;
    background-color: #878888;

}

.w-1{width: 10%;}
.w-2{width: 20%;}
.w-3{width: 30%;}
.w-4{width: 40%;}
.w-5{width: 50%;}
.w-6{width: 60%;}
.w-7{width: 70%;}
.w-8{width: 80%;}
.w-9{width: 90%;}
.w-10{width: 100%;}
.m-a{margin: auto;}

/* .tickets-container{
    overflow: hidden;

} */

.footer-text{
    width: 50%;
    text-align: center;
    color: #fff;
}

.ticket{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

.ticket-header{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: center;
}

#tickets-form.step-two #step-one{
    max-height: 100px;
}

.mb-10{margin-bottom: 10px;}
.mb-20{margin-bottom: 20px;}
.mb-30{margin-bottom: 30px;}

.mt-10{margin-top: 10px;}
.mt-20{margin-top: 20px;}
.mt-30{margin-top: 30px;}

.help-mark{
    position: relative;
    margin-left: 15px;
}

.help-mark .material-icons-round{
    font-size: 20px;
}

.help-mark .help-text{
    display: none;
    background-color: var(--background);
    border-radius: 14px;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    font-size: 12px;
    width: 150px;
    left: -25px;
}

.help-mark:hover .help-text,
.help-mark:active .help-text{
    display: block;
    position: absolute;
}
.pronajem{
    background-color: #c5e0b3;
}
.verejne-brusleni{
    background-color: #f7caac;
}

.brusleni-pro-nejmensi{
    background-color: #fff2cc;
}
.hokej-rodice-a-deti{
    background-color: #ffe599;
}
.zdarma{
    background-color: #08da08;
}
.skola{
    background-color: #bdd6ee;
}
.skola-krouzky{
    background-color: #9cc2e5;
}
.pronajato{
    background-color: #d0cece;
}
/* .capacity{
    display: flex;
    align-items: center;
}

.day-text{
    text-align: center;
    font-weight: bold;
}

.day:last-child{
    margin: 0;
}



#datum{
    min-width: 250px;
}
#datum h2{

    margin: 0;
    font-size: 20px;
}
.blok-label.vyprodano:before{
    content: 'Vyprodáno';
    color: rgb(255, 153, 0);
}

.blok-label.stary:before{
    content: 'Již nelze objednat';
    color: rgb(255, 255, 255);
}

.blok-label.zruseno:before{
    content: 'Zrušeno';
    color: rgb(255, 0, 0);

}

.blok-label.nejde:before{
    content: 'Zatím nelze rezervovat';
}

.blok-label.zruseno::before,
.blok-label.stary::before,
.blok-label.nejde::before,
.blok-label.vyprodano::before{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    text-align: center;
    left: 0;
    bottom: 0;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
} */
/* @supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
.blok-label.zruseno::before,
.blok-label.stary::before,
.blok-label.nejde::before,
.blok-label.vyprodano::before{
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1.5px);
}
} */


/* .blok-data.time{
    font-weight: bold;
    font-size: 12px;
    align-self: center;
    text-align: center;
    grid-column: 1 / span 2;
    grid-row: 2 / span 1;
    white-space: nowrap;
}

.blok-data.price-text,
.blok-data.capacity-text{
    font-size: 14px;
}

.blok-data.type{
    font-weight: bold;
    font-size: 14px;
    
    align-self: center;
    text-align: center;
    margin-bottom: 5px;

    flex: 1;
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
}
.blok-data.price,
.blok-data.capacity{
    
    font-size: 14px;
    font-weight: bold;
    justify-self: end;
} */

.custom-radio{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

.hidden{
    display: none;
}

/* .blok{
    position: relative;
    min-height: 79px;
}
.blok:last-child{
    margin: 0;
}

.custom-radio:checked + .blok-label{
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: absolute;
    z-index: 5;
    width: 100%;
    transform: scale(1.05);
}

.custom-radio:disabled + .blok-label{
    cursor: not-allowed;
}


.rekapitulace .custom-radio:checked + .blok-label{
    
    background-color: inherit;
    cursor: default;
    box-shadow: none;
    position: static;
    
    width: inherit;
    transform: scale(1);
    
}


.custom-radio:checked + .blok-label::after{
    content: 'check';
    position: absolute;
    -webkit-font-feature-settings: 'liga';
    right: 0;
    top: 0;
    font-size: 18px;
    font-family: 'Material Icons Round';
    color: var(--primary);
} */

.qr-codes.full-screen{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    /* transition: cubic-bezier(0.4, 0, 0.2, 1) 250ms; */
    max-height: 100vh;
    z-index: 3;
}

.qr-codes{
    position: relative;
    z-index: 2;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 300ms cubic-bezier(.45,.05,.55,.95);

}

.qr-code{
    cursor: pointer;
    
}

.qr-codes .qr{
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.qr-codes.collapsed{
    max-height: 0px;
    transition:max-height 300ms cubic-bezier(0, 1, 0, 1);
}

.qr-codes.full-screen .qr{
    
    position: relative;
    z-index: 4;
    
}

#hambac{
    display: none;
    
}


.qr-codes.full-screen .qr img{
    width: 100%;
    
}

.qr{
    text-align: center;
    text-align: -webkit-center;
}

.noscroll{
    overflow: hidden;
}

#qr-curr-text{
    top: 0;
    left: 0;
    padding: 0.5rem;
    color: white;
    letter-spacing: 2px;
    order: -1;
}

.qr-codes.full-screen .qr:not(.curr) .btn.qr-download{
    display: none;
}

.qr-codes.full-screen .qr:not(.curr):before .qr-code[data-doprovod="1"]{
    content: 'DOPROVOD';
    position: absolute;
    color: red;
    left: 0;
}

.doprovod{
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    width: 100%;
}

.doprovod-text{
    color: #fff;
    background-color: var(--primary);
    padding: 3px;
    font-weight: bold;
}

.qr-codes.full-screen .qr.curr .doprovod{
    display: none;
}

#vstupenky .vce-message-box{
    order: -1;
}
.qr-codes.full-screen .qr:not(.curr){
    width: 20%;
}
.qr.curr {
    width: 100%;
    flex: 1 0 auto;
    order: -1;
}



#selected-blok-date{
    text-align: center;
}

.link-list{
    background-color: var(--primary);
    width: 100%;
    padding: 10px;
}

.copyright{
    background-color: var(--primary-dark);
    padding: 10px;
    width: 100%;
}

.copyright a{
    color: #fff;
    text-decoration: none;
}

.status{
    padding: 5px 10px;
    border-radius: 14px;
    border: 1px solid;
    white-space: nowrap;
}

.status.c1,
.status.c2{
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}


.status.c4{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.status.c9,
.status.c5,
.status.c6{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.status.c3,
.status.c7,
.status.c8{
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.ticket .btn.action.cancel{
    margin-left: auto;
}

.btn.action{
    background-color: var(--primary);
}



.ticket .btn.action.pdf-download{
    margin: 0 5px;
}
.ticket .btn.action{
    font-size: 12px;
    margin: 0;
    padding: 0;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 250ms;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket .btn.action .inside-btn{
    padding: 5px 10px;
}

.ticket .btn.action.cancel{
    border: 1px solid var(--red);
    background-color:transparent;
    color: var(--red);
    font-weight: bold;
}

.ticket .btn.action.cancel:hover{
    background-color: var(--red);
    color: var(--text-on-primary)
}

.btn a{
    text-decoration: none;
    color: var(--text-on-primary);
}

.ticket.new{
    border: 4px solid #4bd67b;
}

.ticket.error{
    border: 4px solid #f57e7c;
    order: -1;
}

.ticket.new .collapsed{
    max-height: 1000px;
}

#cookie-bar{
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-top: 1px solid var(--primary-dark);
}

.cookie-bar__inner{
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-bar__message,
.cookie-bar__link{
    margin: 0 5px;
}

#fixed-msg{
    position: fixed;
    top: 30px;
    z-index: 20;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    animation: pop-up 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

section .msg{
    margin-bottom: 10px;
}

.msg{
    border-radius: 14px;
    padding: 14px;
    display:-webkit-box;
    display:-webkit-flex;
    display:-webkit-flexbox;
    display: flex;
    color: #fff;
    animation: pop-up-2 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.msg .material-icons-round{
    margin: auto 0;
}

.msg-text{
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.msg.success {
  background: #4bd67b;;
}

.msg.info {
  background: #71b2df;;
}

.msg.warning {
  background: #f5c76f;;
}

.msg.error {
  background: var(--red);;
}

.msg-date{
    text-align: right;
}

@media (max-width: 1300px) {

    .small{
        width: 70%;
    }

    .form-fields{
        width: 70%;

    }

    #datum{
        min-width: none;
    }   
    .inside-header{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
    }
    #step-two .form-fields,
    #step-one .form-fields{
        width: 70%;
    }

    .main-nav-list{
        flex-direction: column;
    }

    #vstupenky section{
        width: 70%;
    }

    .logo,
    .kredity,
    .menu{
        width: 100%;
        margin-bottom: 10px;
    }

    #menu{
        max-height: 0;
        overflow: hidden;
        transition: cubic-bezier(0.4, 0, 0.2, 1) 250ms;

    }
    #menu.collapse{
        max-height: 500px;
        transition: cubic-bezier(0.4, 0, 0.2, 1) 250ms;
        
        
    }
    .menu{
        position: relative;

    }
    .row.justify-end.logo,
    .row.justify-end.kredity,
    .menu.row.justify-end{
        justify-content: start;
    }
    .hambac{
        font-size: 36px;
        color: var(--primary-dark);
    }
    #hambac{
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        border: none;
        background-color: transparent;
        padding: 0;
        height: 36px;
        width: 36px;
    }

    .btn.qr-download{
        position: relative;
        visibility: visible;
        background-color: rgba(20,20,20,1);
        color: #fff;
        padding: 10px
    }
}


@media (max-width: 1440px) {
    .inside-header,
    .inside-footer,
    section
    {
        width: 90%;
    }
}

@media (max-width: 1000px) {

    .small{
        width: 80%;
    }

    /* .tickets-container{
        width: 100%;
    } */
    .form-fields{
        width: 70%;

    }
    #bloky{
        overflow-x: scroll;
    
    }
    .blok-data .type{
        font-size: 14px;
    }

    #step-two .form-fields,
    #step-one .form-fields{
        width: 70%;
    }

    #vstupenky section{
        width: 80%;
    }
}

@media (max-width: 700px) {

    #step-two .form-fields {
        padding: 0;
        border-radius: 0;
        border: none;
    }

    .inside-header,
    .small,
    section,
    #vstupenky section{
        width: 95%;
    }

    .small section{
        width: 100%;
    }
    .logo{
        margin-bottom: 30px;
    }
    /* .tickets-container{
        width: 100%;
    } */

    .form-fields{
        width: 80%;
    }

    #step-two .form-fields,
    #step-one .form-fields{
        width: 100%;
    }
    #vstupenky section{
        width: 95%;
    }

    .web-title-text{
        font-size: 39px;
    }
    section{
        padding: 10px;
    }
    .web-title{
        padding: 0;
        margin-bottom: 0;
    }
}

@keyframes pop-up {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}



@keyframes pop-up-2 {
    from{
        transform: scale(0);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}