/***************************************
* FONTS
***************************************/
@font-face {
    font-family: 'iqos';
    src: url('../fonts/IQOS-Bold.woff') format('woff'),
         url('../fonts/IQOS-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'iqos';
    src: url('../fonts/IQOS-Regular.woff') format('woff'),
         url('../fonts/IQOS-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'iqos';
    src: url('../fonts/IQOS-Light.woff') format('woff'),
         url('../fonts/IQOS-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

/***************************************
* GENERIC DEFINITIONS
***************************************/
p,h1,h2,h4,h5,h6,span,input,a,div{
    font-family: 'iqos' !important;
}
body {
    background: #000;
    overflow-x: hidden;
    overflow-y: scroll !important;
}

footer {
    clear:both;
    position:relative;
    height:120px;
    margin-bottom:-120px;
}

.text-white {color: #ffffff;}
.text-black {color: #00000A;}
.text-grey {color: #5D5D5D;}
.text-turquoise {color: #00D1D2;}
.text-green {color: #009065;}
.text-red {color: #EA3636;}

.bg-white {background: #ffffff;}
.bg-black {background: #00000A;}
.bg-grey {background: #5D5D5D;}
.bg-turquoise {background: #00D1D2;}
.bg-green {background: #009065;}
.bg-red {background: #EA3636;}

.bg-img{background:url(../images/desktop.jpg) no-repeat;background-size:cover;}
.bg-img-2 {
    background: url(../images/desktop-2.jpg) no-repeat;
    background-size: cover;
}

.bg-opacity{background: #ffffff59;}
.bg-opacity-black{background: #000000ba;}

.border-white {border: solid 3px #fff;}
.border-black {border: solid 1px #000;}

.fs-7 {
    font-size: 0.75rem !important;
}
.fs-8 {
    font-size: 0.5rem !important;
}
.fs-9 {
    font-size: 0.25rem !important;
}
.fs-11 {
    font-size: 4.0rem;
}
.fs-12 {
    font-size: 3.0rem;
}
.fs-13 {
    font-size: 2.0rem;line-height: 2rem;
}
.h-100vh{
    min-height: 100vh !important;
}
.custom-height {
    height: 85vh;
}
.custom-input, .custom-input:disabled, .custom-input[readonly] {
    background: transparent;
    border: solid 1px #fff;
    color: #fff;
}
.form-check-input {
    background: #000;
    border: 1px solid #fff;
    border-radius:5px;
}
.form-check-input input {
    opacity: 0;
}
.form-check-input:has(input:checked) {
    background: #00D1D2;
}
#cblFechasTitular input {
    display: none;
}
#cblFechasTitular label {
    border: solid 1px #eee;
    border-radius: 5px;
    padding: 20px 5px;
    color: #fff;
    margin: 5px;
    text-align: center;
}
#cblFechasTitular input:checked ~ label {
    background: #fff;
    color: #000;
}
#cblFechasPlus input {
    display: none;
}

#cblFechasPlus label {
    border: solid 1px #eee;
    border-radius: 5px;
    padding: 20px 5px;
    color: #fff;
    margin: 5px;
    text-align: center;
}
#cblFechasPlus input:checked ~ label {
    background: #fff;
    color: #000;
}
.btn-turquoise {
    color: #fff;
    background: #00D1D2;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 1em;
    cursor: pointer;
    border: none;
}
.btn-black {
    color: #fff;
    background: #000;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 1em;
    cursor: pointer;
    border: none;
}
.btn-grey {
    color: #fff;
    background: #5D5D5D;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 1em;
    cursor: pointer;
    border: none;
}
.btn-outline {
    color: #fff;
    background: transparent;
    border: solid 1px #fff;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 1em;
    cursor: pointer;
}
.btn {
    color: #fff;
    border: solid 3px #fff;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    margin: 10px 0;
}

.noscroll {
    overflow: hidden !important;
}

.cursor-pointer {
    cursor: pointer
}
.popup {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    z-index: 999;
    background:#000000aa;
}
.hidden {
    display:none;
}
.overflow-y-scroll{
    overflow-y: scroll;
    overflow-x: hidden;
}

.img-header{width: 25%;}

/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color:#fff;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ffffffba;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #ffffffba;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid #00111C;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }



/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .img-header{width: 100%;}
    .bg-img {background: #000;}
    .bg-img-2 {
        background: #000;
    }
    .custom-height {
        height: auto;
    }
    
}
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .img-header{width: 100%;}
    .bg-img {
        background: #000;
    }
    .bg-img-2 {
        background: #000;
    }
    .custom-height {
        height: auto;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .img-header{width: 75%;}
    .bg-img {
        background: #000;
    }
    .custom-height {
        height: auto;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) and (max-width: 1399.98px) {
    
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    

    
}
