      .cookieConsentContainer{
        z-index:999;
        width: 100%;
        background-color: rgba(79, 79, 79, 0.8);
        overflow:hidden;
        position:fixed;
        bottom: 0px;
		    color:#fff;
        padding-left: 12px;
        padding-right: 12px;
      }
      
      .cookieDesc{
        margin-top: 5px;        
        display: flex;
        justify-content: center;
      }
      
      .cookieButton{
        display: flex;
        justify-content: center;
        margin-bottom: 5px;
      }
      
      .cookieConsentContainer .cookieDesc p{
        font-family:OpenSans,arial,sans-serif;
        color:#fff;
        font-size: 15px;
        margin-bottom: 0px;
      }
      
      .cookieConsentContainer .cookieDesc a{
        font-family:OpenSans,arial,sans-serif;
        color: rgb(252, 208, 0);
        text-decoration:underline;
      }

      .cookieConsentContainer .cookieButton .anchor_01{
        font-family:OpenSans,arial,sans-serif;
        color:#fff;
        font-size:17px;
        font-weight:700;
        background:#000;
        padding: 10px 70px;
        text-align:center;
        transition:background .3s;
        display: block;
        border-radius: 5px;      
        float: left;
        margin-right: 25%;
      }

      .cookieConsentContainer .cookieButton .anchor_02{
        font-family:OpenSans,arial,sans-serif;
        color:#fff;
        font-size:17px;
        font-weight:700;
        background:#000;
        padding: 10px 70px;
        text-align:center;
        transition:background .3s;
        display: block;
        border-radius: 5px;
      }
      
      .cookieConsentContainer .cookieButton a:hover{
        cursor:pointer;
        background:#3e9b67;        
      }


      /*Configurações do Modal JavaScript*/

      .btn_02{
        padding: 12px;
        background-color: black;
        color: #ffffff;
        margin-top: 50%;
        transform: translate(-50%,-50%);
        cursor: pointer;
        font-weight: 700;
        border-radius: 5px;
      }
      
      .btn_02:hover{
        background: aliceblue;
        color: black;                
      }
      
      .modal{
        max-width: 1100px;
        max-height: 520px;
        width: 70%;
        height: 90%;
        background-color: #FFFFFF;
        border-radius: 5px;
        border: solid 10px rgba(79, 79, 79, 0.9);
        position:absolute sticky;
        margin: 0 auto;
        display: none;
        animation: animate;
        animation-duration: 800ms;  
        overflow-y: scroll;
        margin-top: 20px;
      }

      @keyframes animate{
        from{opacity: 1;}
        from{opacity: 0;}
      }      
      
      .fechar{
        font-weight: 700;
        padding: 12px;
        background-color: black;
        color: #ffffff;
        border-radius: 5px;
        float: right;
        cursor: pointer;
        margin-top: 7px;
        margin-right: 7px;
      }

      .fechar:hover{
        background:#3e9b67;
      }
      
      .fechar_Submeter{
        font-weight: 700;
        padding: 12px;
        background-color: black;
        color: #ffffff;
        border-radius: 5px;
        cursor: pointer;
        margin-left: 7px;
        float: left;
      }

      .fechar_Submeter:hover{
        background:#3e9b67;
      }

      @media only screen and (max-width: 991px) {
        .modal{
          width: 90%;
          background-color: #FFFFFF;
          border-radius: 5px;
          border: solid 10px rgba(79, 79, 79, 0.9);
          position:absolute sticky;
          top: 50%;
          left: 50%;
          transform: translate(-50%,-50%);
          display: none;
          animation: animate;
          animation-duration: 800ms;
          overflow-y: scroll;
        }  
      }

      .div_s{
        display: inline-block;
      }

      #div_01{
        float: left;
        width: 25%;
        height: auto;
      }

      #div_02{
        width: 75%;
        height: auto;
      }

      #div_01 p{
        margin-left: 10px;
        font-size: 15px;
        font-weight: 700;
        display: block;
        text-align: center;          
      }

      #div_02 p{
        margin-left: 10px;
        display: block;
        text-align: center;
      }

      /*Toggle Configurações*/
      .switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 25px;
      }
      
      .switch input { 
        opacity: 0;
        width: 0;
        height: 0;
      }
      
      .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
      }
      
      .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 26px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
      }
      
      input:checked + .slider {
        background-color: #2196F3;
      }
      
      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%;
      }
      .p_toggle{
        margin: 0px;
      }
      input[type="checkbox"]{
        margin: 0px;
      }
      .switch{
        margin-left: 50%;
        margin: 0px;
      }
      /*Fim Toggle*/