.window-popup-close:before {
    content: "\f112";
    font-family: "woodmart-font";
}

.window-item {
    padding: 20px;
    border: 2px solid #e5e5e5;
    margin-bottom: 20px;
}

.input-row-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    /* align-items: center; */
    padding-bottom: 12px;
}

.input-row-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
}

.other-color-input {
    display: none;
}

.window-selected-type {
    aspect-ratio: 1 / 1;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.window-selected-type:not(.window-type-placeholder) {
    font-size: 0;
}

.window-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

.window-remove {
    background-color: #e51f1f;
    color: #FFF;
    display: inline-flex;
    padding: 8px 25px;
    font-weight: 500;
    font-size: 14px;
    transition: .4s ease;
}

.window-remove:hover {
    cursor: pointer;
    background-color: #be1717;
}

.window-form-lower {
    display: flex;
    justify-content: flex-end;
}

.window-add {
    background-color: #83b735;
    color: #FFF;
    display: inline-flex;
    padding: 8px 25px;
    font-weight: 500;
    font-size: 14px;
    transition: .4s ease;
}

.window-add:hover {
    background-color: #628b24;
    cursor: pointer;
}

.window-type {
    transition: .4s ease;
}

.window-type:hover {
    cursor: pointer;
    background-color: #eaeaea;
}

.window-color {
    position: relative;
}

.window-selected-color-title {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    width: calc(100% - 2px);
    text-align: center;
    background-color: rgba(255, 255, 255, .5);
    font-size: 16px;
    font-weight: 600;
    color: #000;
    pointer-events: none;
}

.window-color-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    width: calc(100% - 2px);
    text-align: center;
    background-color: rgba(255, 255, 255, .5);
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
    color: #000;
}

.window-selected-color {
    background-color: #FFF;
    aspect-ratio: 1 / 1;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: .4s ease;
    opacity: 1;
}

.inputs-vertical {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.window-selected-color:hover {
    cursor: pointer;
    opacity: .8;
}

#window-type-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .85);
    z-index: 1000;
}

#window-color-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .85);
    z-index: 1000;
}

.window-popup-inner {
    width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    background-color: #FFF;
    position: relative;
    border: 2px solid #e5e5e5;
}

.window-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.window-popup-close:hover {
    cursor: pointer;
}

.window-types-list {
    padding: 30px;
}

.window-types-category {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    padding-bottom: 25px;
}

.window-type-item {
    padding: 8px;
    border: 1px solid #e5e5e5;
    opacity: 1;
    transition: .4s ease;
}

.window-type-item:hover {
    cursor: pointer;
    opacity: .8;
}

.window-type-item-title {
    font-size: 15px;
    padding-top: 5px;
    line-height: 125%;
}

#window-color-popup .window-types-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.window-color-item img {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.window-color-item .window-type-item-title {
    font-size: 15px;
    padding-top: 5px;
    line-height: 125%;
}

.window-color-item {
    transition: .4s ease;
    opacity: 1;
}

.window-color-item:hover {
    opacity: .8;
    cursor: pointer;
}

.form-details {
    padding: 20px;
    border: 2px solid #e5e5e5;
    margin-bottom: 20px;
    margin-top: 50px;
}

.input-person-type {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding-bottom: 20px;
}

.input-privacy {
    padding: 20px 0;
}

.input-privacy a {
    color: #83b735;
    text-decoration: underline;
}

.input-row-1 {
    padding-bottom: 12px;
}

.pt-btn-submit {
    background-color: #83b735 !important;
    color: #FFF !important;
    padding: 10px 30px !important;
}