.wrapper{
	display: none;
}
.visible{
	display: block;
}

.item-container{
    border: solid 3px #2a2a2a;
}

/* Delete icon */
.deleteItemIcon{
    width: 20px;
}

.deleteItemIcon-rightSide{
    width: 10px;
}

.deleteIconTitle{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


#addItemBtn{
    border: 3px solid #2a2a2a;
    padding: 10px 30px;
    min-width: 65%;
}

.addItem-textContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addItem-textContainer span{
    margin: 0 10px;
}

.addItem-text{
    font-size: 18px;
}


/* Express banner */
.exprWrapper{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 15px;
    margin-top: 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    background-color: #f7f7f7;
    color: #757575;
    cursor: pointer;
}

.exprWrapper:hover{
    background-color: #eeeeee;
}

.exprIcon {
    width: 35px;
    margin-right: 15px;
    filter: brightness(.8) contrast(0.1);
}

.exprContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.exprPrice{
    min-width: 25%;
    text-align: right;
}

.exprTitle{
    max-width: 70%;
}

.exprWrapperActive{
    background-color: #e6f5e9;
    color: black;
    font-weight: 600
}

.exprWrapperActive:hover{
    background-color: #ddefe0;
}

.exprIconActive{
    filter: brightness(1) contrast(1);
}


/* Form */
.form-container{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
}

.hidden{
    display: none;
}

.verifBtn{
    background-color: #ffffff;
    color: black;
    border: 3px solid #2a2a2a;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
}

.verifBtn:hover{
    background-color: #2a2a2a;
    color: white;
}

.verifImg{
    width: 18px;
    margin-left: 5px;
}

.verifTitle{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.msgContainer{
    width: 100%;
    margin: 15px 0 10px 0;
}

.orderForm{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.orderForm input, .orderForm textarea{
    border-width: 2px !important;
    border-radius: 10px !important;
    height: 50px !important;
    background-color: white !important;
    margin-bottom: 10px !important;
}

input[type="date"], input[type="time"]{
    -webkit-appearance: none;
}

.dateInput, .timeInput{
    width: 49% !important;
}

.wideInput{
    width: 100% !important;
}

.dateInputPlaceholder:before, .timeInputPlaceholder:before, .dateInputPlaceholderDist:before{
    position: absolute;
    background-color: #ffffff;
    color: #757575;
}

.dateInputPlaceholder:before{
    content:"Preferované datum";
}

.timeInputPlaceholder:before{
    content: "Preferovaný čas";
}

.dateInputPlaceholderDist:before{
    content: "Do kdy auto zkontrolujeme";
}

.dateInputPlaceholder:hover:before, .timeInputPlaceholder:hover:before, .dateInputPlaceholderDist:hover:before{
    content:"";
}

.toggleContainer{
    border: 2px solid #d7d7d7;
    display: inline-flex;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 7px;
    background-color: #F2F2F2;
}

.toggleBtn{
    padding: 8px 15px;
    border: none;
    color: black;
    width: 50%;
    background-color: #ffffff00;
}

.toggleBtn:not(.toggleBtnActive):hover{
    font-weight: 500;
    background-color: #f7f7f7;
    z-index: 0;
}

.toggleBtnActive{
    border-radius: 30px;
    border: 3px solid #2a2a2a;
    color: black;
    font-weight: 700;
    background-color: white;
    font-size: 16px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .5);
    z-index: 1;
}

.fail-text{
    color: red;
}

.loading{
    float:left; 
    margin-right: 15px;
    border: 5px solid #f0f0f0;
    border-top:5px dotted #fd8a27;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spinner 1.25s linear infinite;
}

@keyframes spinner {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* Mobile edits */
@media only screen and (max-width: 765px){
    .dateInput, .timeInput{
        width: 100% !important;
    }

    #addItemBtn{
        padding: 10px 5px;
    }
}