#vmg-cmp-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
    align-items: center;
    justify-content: center;
  background: rgba( 0, 0, 0, 0.5 );
  padding: 20px;
 
  z-index: 9999;
  display: none;

    backdrop-filter: blur( 5px );


    gap: 15px;
}

.vmg-cmp-modal-content {
    max-width: 640px;
    text-align: center;
    width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    background-color: #fff;
    padding: clamp( 30px, 4vw, 50px );
}

#vmg-cmp-banner p {
  margin: 0 0 10px;
  font-size: clamp( 18px, 4vw, 18px );
}

#vmg-cmp-banner a {
    color: var( --dark );
    text-decoration: underline;
}

.vmg-cmp-modal-content > div {
    margin-top: 1em;
}

#vmg-cmp-banner button {
    padding: 15px 20px;
}

#vmg-cmp-banner button:last-child {
  background-color: transparent;
  color: var( --dark );
}

#vmg-cmp-banner button:hover {
  opacity: 0.9;
}

#vmg-cmp-banner h2 {
    font-weight: 900;
    font-size: clamp( 22px, 4vw, 28px );
    margin-bottom: 1em;
}


/* Toggle switch base */
#vmg-cmp-banner  .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-left: 10px;
  vertical-align: middle;
}

#vmg-cmp-banner  .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#vmg-cmp-banner  .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

#vmg-cmp-banner  .slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

#vmg-cmp-banner  input:checked + .slider {
  background-color: var( --dark );
}

#vmg-cmp-banner  input:checked + .slider:before {
  transform: translateX(24px);
}

#vmg-cmp-banner  .vmg-cmp-consent-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

#vmg-cmp-banner  .vmg-cmp-consent-option small {
    text-align: left;
    display: block;
    margin-top: 5px;
    font-size: 1.4rem;
}

#vmg-cmp-banner  .btn--deny {
    border: unset;
    opacity: 0.4;
}

.vmg-cmp-consent-options {
    margin: 30px 0;
    display: grid;
    gap: 15px;
}

.vmg-cmp-consent-options .vmg-cmp-consent-option:not(:last-child) {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;

}


#cmp-initial-options {
    margin-top: 30px;
}


@media screen and ( max-width: 767px ) {
    #cmp-initial-options {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and ( min-width: 768px ) {

    #cmp-initial-options {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        gap: 15px;
    }

    
}

#vmg-cmp-banner #vmg-cmp-form .btn {
    background-color: var( --brand );
    color: var( --dark );
    width: 100%;

}