.swaq {
    font-family: 'satoshi', sans-serif;
    font-size: 14px;
    line-height: 19px;
    --swq-color-gray-3: #797C7E;
    --swq-color-gray-2: #b5b6b8;
    --swq-color-black: #000;
    --swq-purple: #FAFAFA;
    --swq-white: #000;
    --swq-container-bg: #fff;
}

.swaq.swaq-dark {
    --swq-color-gray-3: #fff;
    --swq-color-gray-2: #b5b6b8;
    --swq-color-black: #fff;
    --swq-purple: #2A2F32;
    --swq-white: #fff;
    --swq-container-bg: transparent;
}

.swq-heading,
.swq-body {
    color: var(--swq-color-black);
}

.swaq-dark .swq-body,
.swaq-dark .swq-heading {
    color: var(--swq-white);
}


.swq-hidden {
    display: none;
    visibility: hidden;
}

.swq-container {
    border: 1px solid var(--swq-color-gray-2);
    background: var(--swq-container-bg);
    padding: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.swq-container.swq-active,
.swq-container:hover {
    border-color: var(--swq-color-gray-3);
}

label.swq-container {
    cursor: pointer;
}

.swq-row {
    display: flex;
    align-items: center;
}

.swq-row p {
    margin: 0;
}

.swq-checkbox {

}

input[type="checkbox"].swq-checkbox {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    margin: 0;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid var(--swq-color-black);
    display: grid;
    place-content: center;
    margin-right: 10px;
}

input[type="checkbox"].swq-checkbox::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.666656 7.5C0.666656 3.44992 3.9499 0.166672 7.99999 0.166672C12.0501 0.166672 15.3333 3.44992 15.3333 7.5C15.3333 11.5501 12.0501 14.8333 7.99999 14.8333C3.9499 14.8333 0.666656 11.5501 0.666656 7.5Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.5404 4.86195C11.8008 5.1223 11.8008 5.54441 11.5404 5.80476L7.40235 10.1381C7.142 10.3984 6.71989 10.3984 6.45954 10.1381L4.45954 8.1381C4.19919 7.87775 4.19919 7.45564 4.45954 7.19529C4.71989 6.93494 5.142 6.93494 5.40235 7.19529L6.93095 8.72388L10.5976 4.86195C10.858 4.6016 11.2801 4.6016 11.5404 4.86195Z' fill='white'/%3E%3C/svg%3E%0A");
    transform: scale(0);
    width: 16px;
    height: 16px;
}

.swaq-dark input[type="checkbox"].swq-checkbox::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.666656 7.5C0.666656 3.44992 3.9499 0.166672 7.99999 0.166672C12.0501 0.166672 15.3333 3.44992 15.3333 7.5C15.3333 11.5501 12.0501 14.8333 7.99999 14.8333C3.9499 14.8333 0.666656 11.5501 0.666656 7.5Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.5404 4.86195C11.8008 5.1223 11.8008 5.54441 11.5404 5.80476L7.40235 10.1381C7.142 10.3984 6.71989 10.3984 6.45954 10.1381L4.45954 8.1381C4.19919 7.87775 4.19919 7.45564 4.45954 7.19529C4.71989 6.93494 5.142 6.93494 5.40235 7.19529L6.93095 8.72388L10.5976 4.86195C10.858 4.6016 11.2801 4.6016 11.5404 4.86195Z' fill='black'/%3E%3C/svg%3E%0A");
    transform: scale(0);
    width: 16px;
    height: 16px;
}

input[type="checkbox"].swq-checkbox:checked::before {
    transform: scale(1);
}

.swq-heading {
    font-weight: 500;
    font-size: 15px;
}
@media screen and (max-width: 1100px){
    .swq-heading {
        max-width: 180px;
    }
}

@media screen and (min-width: 500px) and (max-width: 768px){
    .swq-heading {
        max-width: none;
    }
}

.swq-price {
 font-weight: bold;
 color: var(--swq-white);
}

.swq-body {
    font-size: 13px;
    font-weight: 300;
    line-height: 15px;
}
p.swq-body {
    margin-top: 10px;
    padding-right: 5px;

}


.swq-between {
    justify-content: space-between;
}

.swq-logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.svg-logo svg {
    height: 100%;
}

.swq-modal-button {
    font-weight: 700;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    color: var(--swq-white);
}

.swq-w-full {
    width: 100%;
}

.swq-modal {
    max-width: 500px;
    padding: 24px;
    background-color: var(--swq-purple);
    color: var(--swq-white);
    border-radius: 12px;
    z-index: 10;
    border: none;
}

.swq-modal-wrapper {
    display: flex;
    flex-direction: column;
}

.swq-modal h4,
.swq-modal h5 {
    color: var(--swq-white);
    margin: 0;
}

.swq-modal h4 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
}

.swq-modal h5 {
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
}

.swq-modal p {
    line-height: 27px;
}

.swq-modal-image {
     /* max-width: 350px; */
     width: 100%;
     height: auto;
     padding-top: 21px;
     padding-bottom: 21px;
}

.swq-modal-image img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swq-modal-close {
    cursor: pointer;
    color: var(--swq-white);
    line-height: 1;
    font-size: 32px;
}

button.swq-modal-close   {
    display: inline-block;
    border: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    background: transparent;
    color: var(--swq-white);
    cursor: pointer;
    text-align: center;

    -webkit-appearance: none;
    -moz-appearance: none;

    margin-left: auto;
}

/* button:focus.swq-modal-close   {
    outline: 1px solid #fff;
    outline-offset: -4px;
} */


.swq-modal form {
    display: flex;
    justify-content: flex-end;
}

.swq-modal-text {
    text-align: center;
}

.swq-logo-container {
    margin-top: 10px;
    align-items: center;
}
