/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
#psf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    height: 100vh;
    width: 100vw;
    display: block;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
}

#psf-modal-overlay.showed {
    opacity: 1;
    visibility: visible;
}

#psf-modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    height: 100vh;
    background: #fff;
    width: 100%;
    max-width: 380px;
    transform: translateX(100%);
    transition: all .3s ease-in-out;
}

#psf-modal.is-admin {
    padding-top: 32px;
}

@media screen and (max-width: 782px) {
    #psf-modal.is-admin {
        padding-top: 40px;
    }
}

#psf-modal.showed {
    transform: translateX(0);
}

.psf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px 15px;
    border-bottom: solid 2px #F2F2F6;
}

.psf-modal-header h4 {
    color: #09090B;
    font-size: 21px;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.psf-modal-header button {
    border: 0;
    margin: 0;
    padding: 0;
}

.psf-modal-header button svg {
    width: 24px;
    height: 24px;
    display: block;
}

.psf-modal-header button#psf-modal-close:hover {
    background-color: transparent;
}

.psf-modal-header button#psf-modal-close svg .close {
    color: #09090B;
    transition: all .3s;
}

.psf-modal-header button#psf-modal-close:hover svg .close {
    fill: #FF330A;
}

.psf-modal-main .psf-description {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.psf-modal-main .psf-description .psf-description-img {
    flex: 0 0 50%;
}

.psf-modal-main .psf-description p {
    flex: 0 0 50%;
    background: rgb(242, 242, 242);
    margin: 0;
    padding: 15px 30px 15px 15px;
    border-radius: 20px 0 0 20px;
    font-weight: 500;
    color: #09090B;
}

.psf-modal-main .psf-description p strong {
    text-transform: uppercase;
    font-style: italic;
}

.psf-form-result-size-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.psf-form-result-size-progress {
    width: 100%;
    height: 4px;
    background: #B2B2B8;
    margin-bottom: 15px;
    position: relative;
}

.psf-form-result-size-progress div {
    background: #FF330A;
    height: 100%;
    position: relative;
}

.psf-form {
    padding: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #09090B;
}

.psf-form .psf-form-input-group {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
}

.psf-form-input {
    flex: 1 1 auto;
}

.psf-form-input label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.psf-form-input label strong {
    font-style: italic;
    text-transform: uppercase;
}

.psf-form-input input {
    border-radius: 40px !important;
    border: 2px solid #B2B2B8 !important;
    font-style: italic;
}

.psf-form-unit {
    flex: 1 1 auto;
    display: none;
}

.psf-form-unit button {
    flex: 0 0 50%;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;
    border: 2px solid #FF330A !important;
    color: #09090B;
    background-color: #FFF;
}

.psf-form-unit button.left {
    border-radius: 40px 0 0 40px;
}

.psf-form-unit button.right {
    border-radius: 0 40px 40px 0;
}

.psf-form-unit button.active,
.psf-form-unit button:hover,
.psf-form-unit button:focus {
    color: #FFF;
    background-color: #FF330A;
    text-decoration: none;
}

.psf-form-unit button:first-child {
    border-right: 0;
}

.psf-form-error-msg {
    font-size: 12px;
    color: #FF330A;
    margin: 15px 0;
    max-width: 100%;
    background: rgb(242, 242, 242);
    padding: 15px;
    border-radius: 20px;
    font-weight: 500;
}

.psf-form-submit {
    margin: 15px 0;
}

.psf-form-submit button {
    width: 100%;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;
    border: 2px solid #A9FF00 !important;
    color: #09090B;
    background-color: #A9FF00;
    border-radius: 40px;
}

.psf-form-submit button:hover,
.psf-form-submit button:focus {
    color: #09090B;
    background-color: #90DA00;
    border: 2px solid #90DA00 !important;
}