.privacy {
    box-sizing: border-box;
    background-color:  #f6f6f6;
    position: fixed;
    bottom: 0;
    width: 100% ;
    padding: 25px;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, .25);
    -webkit-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
    -webkit-transition: all.7s cubic-bezier(0.62, 0.28, 0.23, 0.99);
    -o-transition: all.7s cubic-bezier(0.62, 0.28, 0.23, 0.99);
    transition: all.7s cubic-bezier(0.62, 0.28, 0.23, 0.99);
    z-index: 100000
}
 @media(min-width: 1024px) {
    .privacy {
        right: 40px;
        width: 340px;
    }
}
.privacy.open {
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}
.privacy .privacy__desc, .privacy.privacy__desc p {
    font-size: 12px;
    line-height: normal;
    color:  #929292
}
.privacy .privacy__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    padding-top: 10px
}
.privacy .privacy__link {
    margin-right: auto;
    margin-right: 10px;
    font-size: 14px;
    border-bottom: 1px solid #929292;
    color:  #929292;
    display: inline
}
.privacy .privacy__link:last-child {
    margin-right: 0
}
.privacy .privacy__link:hover {
    border-bottom: 0;
    color:  #929292
}
.privacy .privacy__validate {
    padding: 0 10px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1em;
    height: 33px;
}
.privacy .privacy__validate:hover, .privacy .privacy__validate:focus {
    background-color:  #929292;
    color:  #f6f6f6
}
#privacyModal .modal-title {
    font-size:40px
}
#privacyModal .modal-description{
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 20px;
}
#privacyModal .modal-choice-line{
    width: 100%;
    height: 50px;
    font-size:14px;
    border-bottom: 1px solid #eee;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#privacyModal .modal-footer {
    border-top: none;
}

@media (max-width: 768px) {
    #privacyModal .modal-footer {
        display: flex;
        justify-content: space-between;
    }
}



@media (max-width: 768px) {
    #privacyModal .btn {
        font-size: 0.9em;
        padding: 8px 17px;
    }
}

label.switch{
    margin-bottom: 0;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.switch .slider.round {
    border-radius: 34px;
}
.switch .slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #27507e;
}

input:focus + .slider {
    box-shadow: 0 0 1px #1b3858;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
@media (max-width: 768px) {
    #privacyModal .modal-dialog {
        width: 99%;
        margin: 0;
    }
}


/* COOKIES */

#privacyModal .modal-dialog .modal-header {
      padding-top: 30px;
      padding-left: 30px;
      padding-right: 30px;
  }
#privacyModal .modal-dialog .modal-header img {
        height: auto;
        width: 39%;
      }

#privacyModal .modal-dialog .modal-header a {
        font-size: 12px;
        float: right;
        color: #929292;
        text-decoration: underline;
        padding-top: 43px;
      }
    
#privacyModal .modal-dialog .modal-description {
      margin-bottom: 20px;
      font-size: 14px;
      line-height: 1.5em;
      color: #929292;
    }

#privacyModal .modal-dialog .modal-description a {
        color: #922743;
      }
 
#privacyModal .modal-footer button.btn.btn-primary {
          background-color: #922743;
          border-color: #922743;
}
#privacyModal .modal-footer button.btn.btn-secondary {
          color: #922743;
          border-color: #922743;
      }

      @media (max-width: 768px) {
        #privacyModal .modal-dialog .modal-header {
            padding-top: 2px !important;
            padding-left: 10px !important;
            padding-right: 10px !important;
        }
    }