
html {
     overflow-x: hidden;
     overflow-y: scroll;
     height: 100%;
     width: 100vw;
}

body {
    background-color: #2D2D2D;
}

#Background {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5)), url('../../images/BackGround/background_1.webp');
    background-clip: border-box;
    background-size: auto;
    background-repeat: repeat-x;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    background-color: #000000;
    opacity: 0.7;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.nocut {
    word-break: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
}

.nocut-block {
    display:block;
}

a, a:hover, a:focus, a:active, a:visited {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: normal;
}

#mainCore {
    margin-top: 8rem;
}

#search-result-title {
    font-family: "Open Sans", Sans-serif;
    color: white;
    font-size: large;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#search-result-question {
    font-family: "Open Sans", Sans-serif;
    color: white;
    font-size: medium;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 1rem;
    cursor: pointer;
}

#search-result-not-found {
    color:black;
    text-align: left;
}

#highlight-red {
    color:#bc0a0a;
}

#highlight-bold {
    font-weight:bold;
}

#search-result-apps {
    color: white;
    padding-top: 20px;
    padding-bottom: 40px;
}

#search-result-apps-title {
    font-weight: normal;
    font-style: oblique;
}

.search-result-apps-button {
    background-repeat: no-repeat;
    padding: 10px 15px 10px 15px;
    border: 0px solid transparent;
    height: 52px;
    /* padding-top: 50px; */
}

#button-apple {
    width: 155px;
    background-image: url(../../images/Stores/App_Store.png);
}

#button-android {
    width: 175px;
    background-image: url(../../images/Stores/Play_Store.png);
}

.card {
    border: 1px solid;
    padding: 0.75rem;
}

#transparent-card {
    background: none;
    margin-bottom: 1.5rem;
    border: none;
}

.search-btn {
    background: #BC0A0A; 
    border: 1px solid #BC0A0A; 
    color: white;
    cursor: pointer;
}

.alt-search-btn {
    background: none; 
    border: 1px solid #BC0A0A; 
    color: white;
    cursor: pointer;  
}

.alt-search-btn:hover {
    background-color: #BC0A0A;
}

.search-textfield {
    padding: 5px 10px;
    margin-bottom: 10px;
    width: 25%;
    border-radius: 5px;
    border: none;
}

@media screen and (max-width: 991px) {
    #search-result-question {
        font-size: small;
    }
}

@media screen and (max-width: 767px) {
    .search-textfield {
        width: 100%;
        padding: 5px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
        border: none;
    }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .search-textfield {
        width: 50%;
        padding: 5px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
        border: none;
    }
}

.alt-search-textfield {
    padding: 5px 10px;
    margin-bottom: 10px;
    width: 75%;
    border-radius: 5px;
    border: none;
}

.report-desc-list {
    list-style-type: none; 
    padding-left: auto;
    margin-top: 0.75rem;
    text-align: left;
}

.report-desc-list li {
    margin-bottom: 0.25rem;
}

.pricing-card-title {
    text-align: center;
    padding-bottom: 1rem;
}

.card-title {
    margin-bottom: 1rem;
    text-align: center;
}

#paypal-button-container {
    padding-right: 20%;
    padding-left: 20%;
}

#result-container {
    text-align: left;
}

#title-test-date {
    font-size:medium;
    font-weight: 400;
}

#test-date {
    font-weight: 600;
}
.link-to-cvg{
    color: #BC0A0A!important;
    text-decoration: underline!important;
}
.switch-container{
    padding-top: 7px;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    float: right;
}
  
/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .2s;
transition: .2s;
}

.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .2s;
transition: .2s;
}

input.consent-input:checked + .slider {
background-color: #BC0A0A;
}

input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.consent-cvg{
    width: 425px;
    margin: 10px;
}
.consent-cvg-head{
    transition: all 0.2s;
    border: 1px solid #9d9d9db0;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 600px;
    min-width: 200px;
    text-align: center;
}
.consent-cvg-head span{
    text-align: left;
    font-size: 15px;
}
.consent-cvg-body{
    transition: all 0.2s;

    border: 1px solid #9d9d9db0;
    border-top: none;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.consent-cvg-body ul{
    list-style-type: none;
    border: 1px solid #b5b5b5ca;
    padding: 10px;
    border-radius: 5px;
}
.consent-cvg-body li i{
    padding: 5px;
}
.dropdown-btn{
    font-size: 25px;
    font-weight: 600;
    transition: all 0.3s;
}
.dropdown-btn:hover {
    cursor: pointer;
    scale: 1.25;
}
.consent-text{
    color: #BC0A0A;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
}
.no-border-bottom{
    border-bottom: none;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.consent-cvg-head-error{
    border-color: #BC0A0A;
    border-width: 3px;
}
.bottom-text{
    font-size: 10px;
    padding: 12px;
    padding-top: 0px;
    text-align: center;
}
#search-result-input form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Rapport item in light red */
.container-rapport-recap{
    width: 425px;
}
.item-rapport-recap{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

    color: #2D2D2D;
    border: 1px solid #b5b5b5ca;
    border-radius: 5px;

    padding: 10px;
    margin: 10px;
    width: 180px;
    height: 100px;

    transition: all 0.1s;
}
.item-rapport-recap-bg-hover{
    color: #FFFFFF;
    background-color: #2D2D2D;
    font-size: 10px;
    text-align: justify;

    transition: all 0.1s;
}
.item-rapport-recap i{
    font-size: 40px;
}
.item-rapport-recap span{
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}
