/* Popups */

.gtm-popup.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
    z-index: 10000;
  }
  .gtm-popup .modal {
    display: block;
    width: auto;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    position: static;
  }
  .gtm-popup.overlay.on {
    background: rgba(0, 0, 0, 0.7);
  }
  .gtm-popup.overlay:target {
    visibility: hidden;
    opacity: 0;
  }
  .gtm-popup.closed {
    display: none !important;
  }
  .gtm-popup .popup {
    margin: 30px auto;
    padding: 0px;
    background: #144284;
    border-radius: 5px;
    width: 600px;
    position: relative;
    transition: all 5s ease-in-out;
    border: #ddd 0px solid;
  }
  .gtm-popup .popup.topright {
    margin-right: 30px;
  }
  .gtm-popup .popup.topleft {
    margin-left: 30px;
  }
  .gtm-popup .popup.bottomright {
    margin-right: 30px;
    bottom: 0;
    position: fixed;
  }
  .gtm-popup .popup.bottomleft {
    margin-left: 30px;
    bottom: 0;
    position: fixed;
  }
  .gtm-popup .popup h2 {
    margin-top: -3px;
    color: #333;
    font-size: 24px;
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1;
    margin-bottom: 10px;
  }
  .gtm-popup .popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    height: 20px;
    display: block;
    line-height: 20px;
    width: 20px;
  }
  .gtm-popup .popup .close:hover {
    color: #fff;
  }
  .gtm-popup .popup .content {
    overflow: scroll;
    overflow-x: hidden;
    max-height: 500px;
    text-align: center;
  }
  .gtm-popup .popup .content::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
  .gtm-popup .popup .content p {
    font-size: 16px;
    padding-top: 0px;
    margin: 0;
    color: #fff;
    padding: 0 0 50px;
  }
  .gtm-popup .popup .content p strong {
    font-weight: bold;
    color: #77815e;
    font-size: 17px;
  }
  @media screen and (max-width: 767px){
    .gtm-popup .popup{
       width: 70%;
    }
  }
  
  /* Custom settings */
  
  #camp_title {
    padding-right: 20px;
    margin-bottom: 18px;
    text-transform: none;
  }
  ul#camp_cart {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 370px;
    overflow: scroll;
  }
  ul#camp_cart li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
  }
  ul#camp_cart li:not(:last-child) {
    border-bottom: 0.5px solid #144284;
    margin-bottom: 8px;
  }
  ul#camp_cart li .expopmobprc {
    display: none;
  }
  ul#camp_cart li > img {
    margin-right: 15px;
  }
  ul#camp_cart li > a {
    color: #333;
    line-height: 1.2;
  }
  ul#camp_cart li span.ctitm-prc {
    text-align: right;
    color: #FF7300;
    font-size: 1.8rem;
    line-height: 1.2;
  }
  ul#camp_cart li span.ctitm-prc small {
    text-decoration: line-through;
    color: #333;
  }
  a.expopcta {
    display: block;
    padding: 12px 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-family: "Arial", sans-serif !important;
    font-weight: 700;
    font-size: 16px;
  }
  a.expopcta > span {
    padding: 10px 0 8px;
    display: inline-block;
  }
  a.expopcta > span#camp_total {
    float: right;
    border-left: .5px solid #fff;
    margin-right: 30px;
    padding-left: 35px;
  }
  a.expopcta > span:last-child > span {
    display: none;
  }
  
  @media screen and (max-width: 767px){
    ul#camp_cart li .expopmobprc {
       display: inline;
    }
    ul#camp_cart li .ctitm-prc {
       display: none;
    }
    .promobanners > a:first-child {
        display: none !important;
    }
  }
  
  @media screen and (max-width: 599px){
    a.expopcta > span#camp_total {
       display: none;
    }
    a.expopcta > span:last-child {
       display: block;
       text-align: center;
    }
    a.expopcta > span:last-child > span {
       display: inline;
    }
    ul#camp_cart li {
       margin-bottom: 1rem;
    }
  }
  
  .promobanners {
     display: flex;
     flex-direction: column;
  gap: 20px;
  }
  .gtm-popup .popup .content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
  }