/*
* {box-sizing: border-box}

button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}
*/
/* Float cancel and delete buttons and add an equal width */
#id01 .cancelbtn, #id01 .deletebtn {
  float: left;
  width: 50%;
}

/* Add a color to the cancel button */
#id01 .cancelbtn {
  background-color: #ccc;
  color: black;
}

/* Add a color to the delete button */
#id01 .deletebtn {
  background-color: #f44336;
}

/* Add padding and center-align text to the container */
#id01 .container {
  padding: 16px;
  text-align: center;
}

/* The Modal (background) */
#id01.modalCook {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  /*background:url(/img/bgCF.gif) 50% 0 repeat #474e5d;*/
  background-color: #474e5d;
  padding-top: 50px;
}

/* Modal Content/Box */
#id01 .modalCook-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
#id01 hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}

/* The Modal Close Button (x) */
#id01 .close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

#id01 .close:hover,
#id01 .close:focus {
  color: #f44336;
  cursor: pointer;
}

/* Clear floats */
#id01 .clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  #id01 .cancelbtn, #id01 .deletebtn {
    width: 100%;
  }
}


/* GTAG CSS */

div#cookie {
max-width:980;
margin:0 auto;
}
div#cookie input[type=submit] {
display:none;
width:35px;
height:35px;
 border:none;
background:url(/img/cookie.png) no-repeat;
background-size:cover;
text-indent:-9999px;
left:0;
bottom:0;
position:absolute;
 cursor: pointer;
 z-index:99;
}
</style>
<style>
/*
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
   min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
}
*/
#id01 h1, #id01 p {
text-align:left;
}
#id01 h1 {
font-size:1.5em;
margin:0;
text-transform:capitalize;
}
#id01 .switch .dflex{
    display: flex;
    align-items: center;
    justify-content: center;
} 
#id01 .switch .textL, #id01 .switch .textR {
    font-weight: 600;
    /*color:#fff;*/
    font-size:24px;
    width:4%;
    height:12px;
    padding:0 60px 0 30px;
}

#id01 .switch .switch-div{
    /*width:8%;*/
}
#id01 .switch{
    width:100%;
}
#id01 .switch input[type=checkbox]{
    height:0;
    width:0;
    visibility: hidden;
}
#id01 .switch label{
    cursor: pointer;
    text-indent: -99999px;
    width:80px;
    height:41px;
    background-color: gray;
    display: block;
    border-radius: 41px;
    margin:0 auto;
    position: relative;
}
#id01 .switch input:checked+label{
    background-color: #00b665;
}
#id01 .switch input:checked+label:after{
    left:calc(100% - 5px);
    transform: translateX(-100%);
}
#id01 .switch label:after{
    content: '';
    position: absolute;
    top:3px;
    left:5px;
    width:35px;
    height:35px;
    background-color: #fff;
    border-radius: 100%;
    transition: 0.3s;
}

