/* 
    Created on : Aug 13, 2020, 12:32:52 PM
    Author     : Nikola Markovic <nikola.d.markovic@pupin.rs>
*/

/* Import PT Serif font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');

body {
     font-family: 'PT Serif', serif; /*!important; */
}

.container {
    border: 1px solid #ccc;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-left: 2%;
    padding-right: 2%;
}

a, a:hover {
    text-decoration: none;
    color: initial;
}

.cart-indicator {
    position: absolute;
    top: 3%;
    right: 3%;
    width: 80px;
    height: 40px;
    text-align: center;
    line-height: 35px;
    border-radius: 20px;
    border: 1px solid #008CBA;
    z-index: 101;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    line-height: 60px;
    background-color: transparent;
    z-index: 100;
}

.footer-distancer {
    width: 100%;
    background: transparent;
    height: 350px !important;
    min-height: 350px !important;
}

.container::-webkit-scrollbar {
    display: none !important;
}

.container::-webkit-scrollbar-track {
    display: none !important;
}

.container::-webkit-scrollbar-thumb {
    display: none !important;
}

.badge.badge-primary.text-wrap {
    font-size: 0.95em;
}

/* ======================================================= */
/* Material Switch by https://bootsnipp.com/mouse0270 */
.material-switch > input[type="checkbox"] {
    display: none;   
}

.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative; 
    width: 40px;  
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}

.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}

.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}

.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}
/* ======================================================= */