/*
Footer
*/
.footer-general {
   background-color: #fff;
   padding-top: 50px;
   padding-bottom: 20px;
   z-index: 101;
   position: relative;
   overflow: visible;
}

.footer-general .row::after {
   display: none;
}

.footer-general .row-main .col-12 {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-general p.footer-title:not(.community) {
   margin-bottom: 17px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1.6px;
   color: #000;
}


.footer-general p {
   color: #000;
   font-weight: 400;
}

.footer-general .row {
   gap: 30px;
   align-items: flex-start;
}


.footer-general .row-main ul {
   display: flex;
   flex-direction: column;
   gap: 9px;
}

.footer-general li a {
   color: #000;
   font-size: 15px;
   letter-spacing: 1.6px;
   font-weight: 400;
   transition: all 0.3s;
}

.footer-general li a:hover {
   opacity: 0.7;
}


p.footer-title.community {
   text-transform: uppercase;

}

.footer-icons {
   display: flex;
   gap: 11px;
   margin-top: 30px;
}


.footer-general .row-community {
   border-top: 1px solid #E6E6E6;
   border-bottom: 1px solid #E6E6E6;
   margin-top: 50px;
   margin-bottom: 50px;
   padding-top: 50px;
   padding-bottom: 50px;
}

.footer-general .community-wrapper {
   display: flex;
   align-items: center;
   gap: 15px;
}

.footer-general .community-wrapper a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 53px;
   height: 53px;
   border-radius: 50%;
   background: white;
   transition: all 0.3s;
   position: relative;
   bottom: 0;
}

.footer-general .community-wrapper a:hover {
   bottom: 5px;
}

.footer-general .row-community .col {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px;
}

.footer-general .newsletter-wrapper {
   display: flex;
   align-items: center;
   gap: 15px;
}

.footer-general .newsletter-wrapper p.newsletter-title {
   font-weight: 800;
}

.footer-general .row-copyright {
   padding-top: 5%;
}

.footer-general .row-copyright .col-12 {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   align-items: center;
   gap: 30px;
}

.footer-general .footer-dropdown {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
}

.footer-general .credit-cards-footer img.barion {
   margin-left: auto;
   margin-right: 0;
   display: block;
   max-width: 400px;
   width: 100%;
}

.footer-general .credit-cards-footer ul {
   display: flex;
   justify-content: center;
   list-style: none;
   gap: 10px;
   margin: 0px;
}

.footer-general .credit-cards-footer ul li {
   height: 37px;
   border-radius: 6px;
   -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
   -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
   box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.footer-general .credit-cards-footer ul li svg {
   width: auto;
   height: 37px;
}

p.footer-title.support {
   margin-bottom: 0px !important;
}

p.footer-title.support span {
   text-transform: uppercase;

}

/*Page notification*/
#page-notification {
   background: white;
   display: flex;
   width: 100%;
   max-width: 380px;
   padding: 11px;
   padding-right: 20px;
   gap: 17px;
   border-radius: 12px;
   position: fixed;
   bottom: -100px;
   left: 12px;
   z-index: 1000;
   opacity: 0;
   pointer-events: none;
   transition: all 0.3s;
}

#page-notification.active {
   bottom: 12px;
   opacity: 1;
   pointer-events: all;
   transition: all 0.5s;
}

#page-notification div.img {
   max-width: 66px;
}

#page-notification .image-cover {
   padding-top: 123%;
   border-radius: 0px;
}

#page-notification a.btn-primary.cta {
   font-size: 10px;
   padding: 5px 15px;
   margin-top: 3px;
}

#page-notification .close-notification {
   position: absolute;
   right: 8px;
   top: 10px;
   cursor: pointer;
}

/*Footer form*/
.footer-general #sib-form .sib-form-block__button {
   min-width: max-content;
}

/*Footer loyalty program*/
li.loyalty-program-menu a {
   position: relative;
   display: flex;
   align-items: center;
}

li.loyalty-program-menu a:before {
   content: '';
   background-image: url(/wp-content/themes/authletic-redesign/assets/loyalty2.svg);
   background-size: contain;
   background-repeat: no-repeat;
   width: 16px;
   height: 16px;
   display: block;
   margin-right: 5px;
}

/*Footer offer*/
p.winter-offer.footer {
   background: #000;
   padding: 12px 15px;
   color: white;
   font-weight: bold;
   text-align: center;
   position: sticky;
   top: 0;
   font-size: 13px;
   font-weight: 600;
   line-height: 18px;
}

/*Responsive*/
@media (max-width: 1300px) {

   .footer-general .newsletter-wrapper p.newsletter-title,
   p.footer-title.community {
      display: none;
   }

   .footer-general .credit-cards-footer ul li,
   .footer-general .credit-cards-footer ul li svg {
      height: 30px;
   }

   .footer-general .footer-dropdown span.footer-only {
      display: none;
   }

   .footer-general .community-wrapper a {
      width: 45px;
      height: 45px;
   }

}

@media (max-width: 991px) {
   .footer-general .row-main .col-12 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      text-align: center;
   }

   .footer-general {
      padding-top: 60px;
      padding-bottom: 30px;
   }

   .footer-general p.footer-title:not(.community),
   p.footer-title:not(.support) {
      font-size: 18px;
      margin-bottom: 0;
   }

   p.footer-title.support span {
      text-transform: capitalize;
   }

   p.footer-title.support {
      font-size: 14px !important;
   }

   .footer-general .row-main .col-12 .menu-item-wrapper:not(:last-child) {
      margin-bottom: 20px;
   }

   .footer-general .row-main .col-12 .menu-item-wrapper.logo-wrapper {
      margin-bottom: 20px;
   }

   .footer-general .row-main .col-12 .menu-item-wrapper.logo-wrapper img {
      max-width: 180px;
   }

   .footer-general .row-main ul {
      gap: 0px;
      margin-top: 5px !important;
   }

   .footer-general .support-wrapper {
      padding-bottom: 25px;
      text-align: center;
   }

   .footer-general .row-community {
      margin-top: 0;
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;
      border: none;
   }

   .footer-general .newsletter-wrapper p.newsletter-title,
   p.footer-title.community {
      display: block;
   }

   .footer-general .row-community .col {
      justify-content: center;
      gap: 0;
      flex-direction: column;
   }

   .footer-general .community-wrapper {
      flex-direction: column;
      width: 100%;
      padding-top: 25px;
      padding-bottom: 25px;
      margin-top: 25px;
      margin-bottom: 25px;
      border-top: 1px solid #E6E6E6;
      border-bottom: 1px solid #E6E6E6;
   }

   .footer-general .newsletter-wrapper {
      width: 100%;
      flex-direction: column;
      padding-bottom: 25px;
      margin-bottom: 25px;
      border-bottom: 1px solid #E6E6E6;
   }

   .footer-general #sib-form {
      gap: 14px;
   }

   .footer-general #sib-form .input:first-child {
      height: 46px !important;
      font-size: 14px !important;
      text-align: center !important;
   }

   .footer-general #sib-form .sib-form-block__button {
      font-size: 14px !important;
      padding: 11px 41px;
   }

   .footer-general #sib-form {
      flex-direction: column;
   }

   .footer-general .row-copyright .col-12 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      text-align: center;
   }

   .credit-cards-footer {
      order: -1;
   }

   .footer-general .footer-dropdown {
      order: 1;
   }

   .footer-general .all-rights {
      order: 2;
   }

   .footer-general .all-rights p {
      font-size: 12px;
   }

   li.loyalty-program-menu a {
      justify-content: center;
   }

   .footer-icons {
      margin-top: 10px;
      justify-content: center;
   }

   .footer-general .credit-cards-footer img.barion {
      margin-left: auto;
      margin-right: auto;
      max-width: 300px;
      width: 100%;
   }
}

@media (max-width: 768px) {
   .footer-general {
      padding-top: 30px;
      padding-bottom: 15px;
   }
}

@media (max-width: 575px) {
   #page-notification {
      max-width: 335px;
   }

   #page-notification p {
      font-size: 14px;
   }

   #page-notification a.btn-primary.cta {
      font-size: 12px;
      padding: 4px 15px;
   }

   .footer-general .credit-cards-footer ul li,
   .footer-general .credit-cards-footer ul li svg {
      height: 20px;
   }

   .footer-general .row-copyright .col-12 {
      gap: 25px;
   }
}