/** misc **/ 

#postion-icons {
    margin-bottom: 10px;
}

#postion-icons li {
    margin: 0;
}



/*********** Plate ****************/



.ddir {
    flex-direction: row;
}

.plate-wrapper {
    position: relative;
    width: 328px;
    border: 2px solid #000;
    background-color: #e7e7e7;
}

.dnone {
    display: none;
}

.dflex {
    display:flex;
}

.p-card {
    padding: 0 0 34px 10px; 
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 5%); 
    background:white; 
    margin-bottom: 10px;
}

.car-success {
    margin-left: 20px;
}

.car-success p {
    margin-bottom: 0;
    font-weight: bold;
}

.car-fail {
    margin-left: 20px;
}

.car-fail p {
    margin-bottom: 0;
    font-weight: bold;
    color: red;
}

.plate-input {
    width: 100%;
    font-size: 24px!important;
    color: black!important;
    text-align: center;
    font-weight: bold;  
    text-transform: uppercase;
    padding: 0!important;
}

.plate {
    position: relative;
}

.plate::before {
    content: "s";
    width: 12%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background: #003399;
    font-size: 14px;
    font-family: Arial;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 3px;
    line-height: 1;
}
.plate::after {
    content: "";
    width: 34px;
    max-height: 50%;
    height: 50%;
    position: absolute;
    left: 1px;
    top: 3px;
    background-image: url('https://www.gummihuset.se/themes/gummihuset/design/bilder/Flag_of_Europe.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 480px) {
    .plate::after {
        width: 30px;
    }
}

.selected-products {
    margin:20px 0;
}

 /*Hidden class for adding and removing*/
 .lds-dual-ring.hidden {
    display: none;
}

/*Add an overlay to the entire page blocking any further presses to buttons or other elements.*/
.overlay {
    position: absolute;
    top: -3px;
    right: -50px;
    width: 100%;
    height: 100vh;
    z-index: 999;
    opacity: 1;
    transition: all 0.5s;
}

/*Spinner Styles*/
.lds-dual-ring {
    display: inline-block;
    width: 40px;
    height: 40px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    margin: 5% auto;
    border-radius: 50%;
    border: 6px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@media screen and (max-width: 600px) {
    .plate-wrapper {
        width: 100%;
    }

    .plate-input {
        border: none!important;
    }

    .plate {
        margin-bottom: 0;
        flex-direction: column!important;
    }

    .ddir {
        flex-direction: column!important;
    }

    .car-fail {
        margin-left: 0;
    }
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}