/* Extra small devices (phones, 576px and down) */

@media (max-width: 640px) {
    .col-sm-2 {
        width: 100%;
    }
}

@media only screen and (max-height: 576px) and (orientation: landscape) {
    .responsive-navbar {
        height: 100vh;
        width: auto;
    }
}

/* CSS rules for any device that is wider than 576 pixels */
@media not screen and not (max-height: 576px) and (orientation: landscape) {
    .responsive-navbar {
        height: auto;
        width: 100vw;
    }
}


/*** SVG external manipulations ***/
svg {
    background-color: Transparent;
    /* background-color: silver !IMPORTANT; */
}

rect.Transparent {
    opacity: 0.1;

}

/* .DarkColor {
    fill: #202020 !IMPORTANT;
}

.LightColor {
    fill: #FFFFFF !IMPORTANT;
}

.ThirdColor {
    fill: #ABB0B4 !IMPORTANT;
} */


body {
    /* We're working with the body tag, and so with the WHOLE page */
    background-color: silver;
    /* The page background */
    color: white;
    /* The page text */
    font-family: arial;
}


.offcanvas {
    /* We're working with the body tag, and so with the WHOLE page */
    background-color: silver;
    /* The page background */
    color: white;
    /* The page text */
}

.row {
    margin: 10px;
}

.text-responsive {
    font-size: calc(100% + 1vw + 1vh);
}

p {
    color: #FFFFFF;
}

.card-body {
    background-color: rgb(182, 178, 178)
}

.card-header {
    color: gray;
    font-weight: bold;
}

.bg-greyed {
    background-color: rgb(182, 178, 178)
}

.card-title {
    color: whitesmoke;
    font-weight: bold;
}



/* Buttons */
button {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}

.divBoutonIcon {
    vertical-align: middle;
    width: 20wv;
    max-width: 200px;
}


footer {
    color: dark
}



/* The text color is set with the fill property, the color property is for HTML only */


mark {
    /* The background color overrides the color of the whole page */
    color: red;
}

.required label:after {
    /* for adding an asterisk to required field labels in input forms */
    content: "*";
}

/* .overiding_bootstrap_box_sizing {
    box-sizing: content-box;
} */

.btn-circle.btn-sm {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    font-size: 8px;
    text-align: center;
}

.btn-circle.btn-md {
    width: 45px;
    height: 45px;
    padding: 5px 8px;
    border-radius: 25px;
    font-size: 12px;
    text-align: center;
}

.btn-circle.btn-md2 {
    width: 50px;
    height: 50px;
    padding: 7px 10px;
    border-radius: 25px;
    font-size: 10px;
    text-align: center;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 12px;
    text-align: center;
}

.block-icon {
    position: relative;
    display: inline-flex;
}

.icon-tag {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 20px !important;
    height: 20px !important;
    /* fill: cornflowerblue; */
}

.profile-pic {
    max-width: 200px;
    max-height: 200px;
    margin: 0 auto;
    border-radius: 5%;
}

.helptext {
    font-size: 0.8em;
    color: dimgrey;
}

@media (orientation: portrait) {
    .side_screen_logo {
        width: 80vw !important;
    }
}

@media (orientation: landscape) {
    .side_screen_logo {
        height: 20vw !important;
    }
}

.toast {
    width: 75% !important;
}