/* Overlay */
.W50 {
    width: 50%;
}

.Fixed {
    position: fixed;
}

.Inset0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.Hidden {
    display: none;
}

.Flex {
    display: flex;
}

.ItemsCenter {
    align-items: center;
}

.JustifyCenter {
    justify-content: center;
}

.BgBlack50 {
    background: rgba(0, 0, 0, 0.5);
}

.Z1000 {
    z-index: 1000;
}

/* Modal box */
.BgWhite {
    background-color: #fff;
}

.RoundedLg {
    border-radius: 0.5rem;
}

.ShadowLg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.WFull {
    width: 100%;
}

.MaxWSm {
    max-width: 45rem;
}

.Py4 {
    padding: 2.5rem;
}

.Px6 {
    padding: 4.5rem;
}

/* Typography */
.TextLg {
    font-size: 1.5rem;
}

.TextSm {
    font-size: 1.25rem;
}

.FontSemibold {
    font-weight: 600;
}

.Mb3 {
    margin-bottom: 1rem;
}

.TextGray700 {
    color: #374151;
}

.Mb4 {
    margin-bottom: 1rem;
}

/* Layout inside modal */
.SpaceX3 {
    display: flex;
    gap: 0.75rem;
}

.JustifyEnd {
    justify-content: flex-end;
}

.JustifyCenter {
    justify-content: center;
}

/* Buttons */
.Px4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.Py2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.TextWhite {
    color: #fff;
}

/* Transition (optional) */
.Transition {
    transition: all 0.2s ease-in-out;
}

#ConfirmModal > div:first-child {
    max-width: 90%;
    width: fit-content;
}

#ConfirmModal.ModalCenter {
    text-align: center;
}

#ConfirmModal .Actions {
    margin-top: 20px;
}

#ConfirmModal .Actions .SknTplTextButton {
    margin: 0;
}

#ConfirmModal .Actions .SknTplTextButton {
    width: 45%;
}

#ConfirmModal .Actions button {
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    display: block;
    text-align: center;
    font-size: 110%;
    cursor: pointer;
    min-width: unset;
    margin-bottom: 0;
    width: 100%;
    max-width: min(160px, 90%);
}

#ConfirmModal .Actions .CloseButton {
    background: #4cb5e8;
    color: #fff;
    border: none;
}

#ConfirmModal .Actions .CloseButton:hover {
    color: #fff !important;
    background: #4cb5e8 !important;
    border-color: #4cb5e8 !important;
}

@media screen and (max-width: 768px),
print {
    #ConfirmModal .Actions .SknTplTextButton {
        width: 50%;
    }

    .Px6 {
        padding: 2.5rem;
    }

    #ConfirmModal .Actions .SknTplTextButton .Button {
        padding: 0.65em 1.0em;
    }
}

@media screen and (max-width: 370px),
print {
    #ConfirmModal .Actions .SknTplTextButton .Button {
        font-size: 80%;
    }
}
