footer#footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 96px 24px 48px;
}

#footer .footer-links {
    position: relative;
    max-width: 540px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 18px;
    border-top: 1px solid #E6E6E6;
}

#footer .footer-info {
    width: 100%;
    margin: 0;
    position: relative;
    max-width: 720px;
}

#footer .footer-info__content {
    max-width: 540px;
    margin: 24px auto 0;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #B2B2B2;
    font-family: "Gilroy", sans-serif;
    text-align: left;
    letter-spacing: -.3px;
}

#footer .footer-info__content:first-of-type {
    margin-top: 8px;
}

#footer .link-list {
    width: 100%;
    max-width: 540px;
}

#footer .link-list ul {
    border-bottom: 1px solid #CECECE;
}

#footer .links-title {
    border: none;
    position: relative;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.9);
    font-family: "Gilroy", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    padding: 0 16px 12px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    letter-spacing: -0.3px;
    box-sizing: border-box;
    outline: none;
}

#footer .links-title:after {
    content: '';
    position: absolute;
    right: 19px;
    transition: transform .7s, top .7s;
    width: 15px;
    height: 15px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;    
    top: 25%;
    transform: translateY(-50%) rotate(225deg);
}

#footer .links-title.is-list-open:after {
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
}

#footer .enriched-list__logo img {
    max-height: 28px;
    margin-bottom: 12px;
}

#footer .link {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 20px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    letter-spacing: -0.3px;
}

#footer .link a,
#footer .link span {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    cursor: pointer;
}

#footer .link a:hover,
#footer .link span:hover {
    color: #36b587;
}

#footer .links-container {
    display: flex;
    flex-direction: column;
    max-width: 540px;
    width: 100%;
}

#footer .links-container .inline-icons {
    display: none;
    padding-top: 8px;
}

#footer .mapped-links {
    max-height: 0;
    list-style: none;
    margin: 10px 0 24px;
    padding-left: 0;
    transition: max-height .7s, padding-bottom .7s;
    overflow: hidden;
}

#footer .mapped-links.is-list-open {
    padding-bottom: 10px;
}

#footer .mapped-social-links {
    display: flex;
    list-style: none;
    margin: 0;
    justify-content: flex-end;
}

#footer .image-links {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    padding: 0;
    width: 100%;
    padding: 8px 0 24px;
    flex-wrap: wrap;
}

#footer .column-title {
    display: none;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
    width: 100%;
    text-align: right;
    font-family: "Gilroy", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
    white-space: nowrap;
}

#footer .image-link {
    width: fit-content;
    padding-bottom: 8px;
}

#footer .image-link:not(:last-of-type) {
    margin-right: 16px;
}

#footer .image-link img {
    max-height: 32px;
    max-width: 108px;
    height: auto; 
}

#footer .logo-box {
    width: 113px;
    height: 31px;
    display: flex;
    flex-shrink: 0;
    margin: 24px 24px 24px 0;
    position: relative;
    z-index: 10;
}

#footer .logo-box img {
    width: 143px;
    height: 32px;
}

#footer .social-mobile-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 48px;
}

#footer .social-mobile-container > img {
    max-height: 24px;
    height: auto;
}

#footer .inline-icons {
    display: flex;
}

#footer .social-icon:not(:last-of-type) {
    margin-right: 16px;
}

#footer .social-icon img {
    width: 32px;
    height: auto;
}

#footer .only-desktop {
    display: none;
}

@media (min-width: 768px) {
    #footer .footer-links {
        max-width: 720px;
    }

    #footer .footer-info__content {
        max-width: 720px;
    }

    #footer .link-list {
        max-width: 720px;
    }

    #footer .links-container {
        max-width: 720px;
    }

    #footer .logo-box {
        height: 40px;
    }

    #footer .logo-box img {
        height: 40px;
    }
}

@media (min-width: 1024px) {
    #footer .footer-links {
        max-width: 1140px;
        padding-top: 66px;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row;
    }

    #footer .footer-info {
        max-width: 100%;
        padding-top: 24px;
    }

    #footer .footer-info__content {
        max-width: 1140px;
    }

    #footer .footer-info__content:first-of-type {
        margin-top: 24px;
    }

    #footer .link-list {
        padding: 30px 15px 0;
        width: 25%;
    }

    #footer .link-list:first-of-type {
        padding-left: 0;
    }

    #footer .link-list ul {
        border-bottom: none;
    }

    #footer .links-title {
        padding: 0 0 12px;
        pointer-events: none;
        cursor: default;
    }

    #footer .links-title:after {
        display: none;
    }

    #footer .link a,
    #footer .link span {
        padding: 0;
        height: auto;
    }

    #footer .links-container {
        flex-direction: row;
        max-width: 100%;
    }

    #footer .links-container .inline-icons {
        display: flex;
    }

    #footer .mapped-links {
        max-height: initial;
        margin-bottom: 0;
    }

    #footer .image-links {
        width: initial;
        flex-direction: column;
        padding: 30px 0 0 15px;
    }

    #footer .column-title {
        display: block;
    }

    #footer .image-link {
        padding-bottom: 0;
    }

    #footer .image-link:not(:last-of-type) {
        margin: 0 0 16px;
    }

    #footer .logo-box {
        margin: 0 24px 0 0;
        padding-top: 30px;
        width: 25%;
    }

    #footer .only-mobile {
        display: none;
    }

    #footer .only-desktop {
        display: block;
    }
}

/** modalPaymentWithDiscountCodes **/
#promoCodesFooterInfoModalContainer {
    background: none;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

#promoCodesFooterInfoModalContainer.visible {
    display: flex;
}

#promoCodesFooterInfoModalContainer .dc-modal-content {
    padding-top: 24px;
}

#promoCodesFooterInfoModalContainer .payment-with-dc-modal-dialog {
    position: relative;
    display: block;
}

#promoCodesFooterInfoModalContainer .payment-with-dc-modal-content {
    padding: 28px 24px 32px;
    position: absolute;
    max-height: 100vh;
    bottom: 0;
    left: 0;
    overflow: auto;
    border-radius: 8px 8px 0 0;
}

#promoCodesFooterInfoModalContainer .dc-modal-description {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -.3px;
    margin: 0;
    color: rgba(0, 0, 0, 0.9);
}
/*modal-header*/
#promoCodesFooterInfoModalContainer .dc-modal-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: #FFF;
    border-radius: 8px;
}

#promoCodesFooterInfoModalContainer .close-modal-discount-codes {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#promoCodesFooterInfoModalContainer .dc-modal-title {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 800;
    display: flex;
    align-items: center;
    color: #191919;   
    margin-bottom: 0; 
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -.5px;
}

/* dc-modal-cards */

#promoCodesFooterInfoModalContainer .dc-modal-cards {
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 32px;
    max-height: 750px;
    overflow-y: auto;
    padding: 24px 0 158px;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    width: 100%;
    min-height: 169px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 16px;
    cursor: pointer;
    pointer-events: none;
    transition: box-shadow 0.2s, border 0.2s;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card:hover {
    border: 1px solid #000000;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card:focus {
    border: 1px solid #2CD091;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card:active {
    border: 1px solid #CCCCCC;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card p {
    margin-bottom: 0;
}
#promoCodesFooterInfoModalContainer .dc-modal-single-card.active {
    background: #E7FAF3;
    border: 1px solid #2CD091;
    border-radius: 16px;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card.clickable {
   pointer-events: initial;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card .single-card-value {
    border-bottom: 1px solid #CCCCCC;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card .single-card-value,
#promoCodesFooterInfoModalContainer .dc-modal-single-card .single-card-expired {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 16px 0;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card .single-card-expired {
    padding: 16px 0 0;
}

#promoCodesFooterInfoModalContainer .dc-modal-single-card .single-card-label {
    font-family: 'GilroySemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3px;
    color: rgba(0, 0, 0, 0.9);
} 

#promoCodesFooterInfoModalContainer .dc-modal-single-card .single-card-title,
#promoCodesFooterInfoModalContainer .dc-modal-single-card .single-card-value-content,
#promoCodesFooterInfoModalContainer .dc-modal-single-card .single-card-expired-content {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3px;
    color: rgba(0, 0, 0, 0.9);
}

/* bottom-row buttons*/
#promoCodesFooterInfoModalContainer .bottom-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    position: fixed;
    bottom: 0; 
    left: 0;
    width: 100%;
    padding: 0 24px 32px;
    background: #FFFFFF;
}

#promoCodesFooterInfoModalContainer .bottom-row::before {
    content: "";
    position: absolute;
    top: -3.2rem;
    left: 0;
    width: 100%;
    height: 3.2rem;
    background: linear-gradient(rgba(0,0,0,0),#fff);
    z-index: 5;
}

#promoCodesFooterInfoModalContainer .bottom-row .left-container,
#promoCodesFooterInfoModalContainer .bottom-row .right-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

#promoCodesFooterInfoModalContainer .bottom-row .left-container {
    flex-direction: row;
}

#promoCodesFooterInfoModalContainer .bottom-row .right-container {
    flex-direction: column;
    margin-bottom: 24px;
}

#promoCodesFooterInfoModalContainer .bottom-row .right-container.options-page {
    margin-bottom: 16px;
}

/* a */

#promoCodesFooterInfoModalContainer .bottom-row .closePromoCodesFooterInfoModal {
    margin-top: 35px;
}

#promoCodesFooterInfoModalContainer .bottom-row a {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.3px;    
    transition: .2s;
    color: #22A271;
}

#promoCodesFooterInfoModalContainer .bottom-row a:hover {
    color: #2CD091;
}

#promoCodesFooterInfoModalContainer .bottom-row a:focus {
    color: #22A271;
}

#promoCodesFooterInfoModalContainer .bottom-row a:active {
    color: #22A271;
    background: rgba(44, 208, 145, 0.1);
    border: 2px solid #2CD091;
    border-radius: 2px;
    transition: none;
}

#promoCodesFooterInfoModalContainer .bottom-row a.disabled {
    color: #B2B2B2;
}

/* button */
#promoCodesFooterInfoModalContainer .bottom-row button {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.3px;
    color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    gap: 8px;
    height: 48px;
    background-color: #FFFFFF;
    border-radius: 56px;
    border: none;
    cursor: pointer;
    transition: background-color .2s;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.02), 0px 2px 7px rgba(0, 0, 0, 0.0402), 0px 1px 3.5px rgba(0, 0, 0, 0.04), 0px 1px 2.00345px rgba(0, 0, 0, 0.0398), 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 0px 0.5px rgba(0, 0, 0, 0.06);
    width: 100%;
}

#promoCodesFooterInfoModalContainer .bottom-row button:hover {
    background-color: #000000;
    color: #FFFFFF;
}

#promoCodesFooterInfoModalContainer .bottom-row button:focus {
    color: rgba(0, 0, 0, 0.9);
    background-color: #FFFFFF;
    outline: 2px solid #2CD091;
}

#promoCodesFooterInfoModalContainer .bottom-row button:active {
    background-color: #FFFFFF;
}

/* green button */
#promoCodesFooterInfoModalContainer .bottom-row button.green-btn {
    color: rgba(0, 0, 0, 0.9);
    background-color: #2CD091;
    box-shadow: none;
}

#promoCodesFooterInfoModalContainer .bottom-row button.green-btn:hover {
    color: #187350;
    background-color: #7EE4BD;
}

#promoCodesFooterInfoModalContainer .bottom-row button.green-btn:focus {
    color: rgba(0, 0, 0, 0.9);
    background-color: #54DBA7;
    border: 1px solid #FFFFFF;
}

#promoCodesFooterInfoModalContainer .bottom-row button.green-btn:active {
    border: 0;
    color: rgba(0, 0, 0, 0.9);
    background-color: #22A271;
}

/* disabled button */
#promoCodesFooterInfoModalContainer .bottom-row button:disabled {
    color: #B2B2B2;
    background-color: #E7FAF3;
}

#promoCodesFooterInfoModal {
    max-width: 720px;
    border-radius: 8px;
    box-shadow: 0px 22px 50px rgba(0,0,0,0.02),0px 12px 30px rgba(0,0,0,0.02),0px 8px 10px rgba(0,0,0,0.04),0px 2px 6px rgba(0,0,0,0.04),0px 1px 3px rgba(0,0,0,0.06),0px 0px 1px rgba(0,0,0,0.1);
}

/* modal-table */
.table-row {
    display: flex;
    border-bottom: 1px solid #E6E6E6;
    padding-top: 16px;
}

.table-header-column {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

.table-header-column p {
    text-align: left;
    color: rgba(0, 0, 0, 0.6);
    padding-bottom: 16px;
}

.table-cell-column {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

.table-cell-column p {
    text-align: right;
    padding-bottom: 16px;
}

.table-header, 
.table-cell {
    font-family: "Gilroy", sans-serif;
    margin: 0;
    letter-spacing: -0.3px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9)
}

.table-cell span {
    font-weight: 800;
}

.table-header-container-desktop {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    display: none;
    justify-content: space-between;
    padding: 16px;
    margin-top: 32px;
}

.table-header-container-desktop p {
    text-align: left;
    flex-basis: 33.33%;
    color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 500px) {
    #promoCodesFooterInfoModalContainer .payment-with-dc-modal-dialog {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        margin: 0;
        border-radius: 0;
    }
}

@media (min-width: 500px) {
    #promoCodesFooterInfoModalContainer .payment-with-dc-modal-content {
        position: relative;
        padding: 32px;
    }
    
    #promoCodesFooterInfoModalContainer .dc-modal-title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -1px;
    }
    
    #promoCodesFooterInfoModalContainer .dc-modal-cards {
        padding: 0;
    }
    
    #promoCodesFooterInfoModalContainer .bottom-row {
        flex-direction: row;
        position: static;
        padding: 0;
    }
    
    #promoCodesFooterInfoModalContainer .bottom-row::before {
        display: none;
    }
    
    #promoCodesFooterInfoModalContainer .bottom-row.bottom-row-reverse {
        flex-direction: row-reverse;
    }
    
    #promoCodesFooterInfoModalContainer .bottom-row .right-container {
        flex-direction: row;
        margin-bottom: 0;
    }
    
    #promoCodesFooterInfoModalContainer .bottom-row .closePromoCodesFooterInfoModal {
        margin-top: 0px;
    }
    
    #promoCodesFooterInfoModalContainer .bottom-row a {
        margin-right: 16px;
    }
    
    #promoCodesFooterInfoModalContainer .bottom-row button {
        width: auto;
    }

    #promoCodesFooterInfoModal {
        margin: 24px;
    }

    .table-header-column {
        display: none;
    }

    .table-cell-column {
        display: flex;
        justify-content: space-between;
        padding: 16px;
        flex-direction: row;
        flex-basis: 100%;
    }

    .table-cell-column p {
        text-align: left;
        flex-basis: 33.33%;
        padding-bottom: 0;
    }

    .table-header-container-desktop.show {
        display: flex;
    }
    
    .table-row {
        padding-top: 0;
    }
}

/** modalPaymentWithDiscountCodes end **/