#vc-constructor-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 800px;
    margin-bottom: 50px;
    position: relative;
    flex-wrap: wrap;
    max-width: 95%;
}

#vc-constructor-left {
    width: calc(100% - 350px);
    height: 100%;
}

#vc-constructor-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    background: rgb(232, 232, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}
#vc-constructor-canvas.drag-over {
    outline: 2px dashed #3cb0ff;
    background-color: #f0f8ff;
}

#vc-constructor-right {
    width: 330px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
#vc-upload-box {
    text-align: center;
}
.vc-upload-box-line-1 {
    color: rgb(60, 60, 60);
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    padding-bottom: 10px;
    margin: 0;
}
.vc-upload-box-line-2 {
    color: rgb(60, 60, 60);
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    padding-bottom: 10px;
    margin: 0;
}
.vc-upload-box-line-4 {
    color: rgb(60, 60, 60);
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    margin: 0;
    padding-top: 10px;
}
#vc-upload-button {
    border: none;
    cursor: pointer;
    transition: 0.3s;
    background: #5fb4a8;
    color: rgb(240, 246, 252);
    font-family: Inter;
    font-size: 11.2px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
    padding: 13px 18px;
}
#vc-upload-button:hover {
    background: #5fb4a8;
}
#vc-constructor-canvas.uploaded {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
#vc-constructor-canvas img {
    position: absolute;
}
#vc-right-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#vc-right-bottom #reset-btn {
    color: rgb(60, 60, 60);
    font-family: Inter;
    font-size: 11.2px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    width: 100%;
    text-align: center;
    padding: 12px;
    cursor: pointer;
}
#vc-right-bottom #reset-btn:hover {
    opacity: 0.6;
}
#vc-right-bottom #download-btn {
    color: rgb(60, 60, 60);
    font-family: Inter;
    font-size: 11.2px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    width: 100%;
    text-align: center;
    padding: 12px;
    cursor: pointer;
}
#vc-right-bottom #download-btn:hover {
    opacity: 0.6;
}
#vc-right-bottom #buy-btn {
    color: #F0F6FC;
    font-family: Inter;
    font-size: 11.2px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    background: #5fb4a8;
    width: 100%;
    text-align: center;
    padding: 13px;
    cursor: pointer;
}
#vc-right-bottom #buy-btn:hover {
    background: #5fb4a8;
}
#vc-right-top {
    height: calc(100% - 198px);
    gap: 25px;
    display: flex;
    flex-direction: column;
}
#vc-category-select {
    border: 0.5px solid rgb(207, 207, 207);
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    color: rgb(60, 60, 60);
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    padding: 15px;
    height: auto;
}
#vc-product-list-wrap {
    position: relative;
    height: 100%;
    overflow: auto;
}
.vc-product-list-wrap-loader:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
#vc-product-list-wrap-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 60px;
    height: 60px;
    display: none;
}
#vc-constructor-list-wrap-loading-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 60px;
    height: 60px;
    display: none;
}
.vc-product-list-wrap-loader #vc-product-list-wrap-loading {
    display: block;
}
.vc-constructor-wrapper-loader:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.vc-constructor-wrapper-loader #vc-constructor-list-wrap-loading-wrap {
    display: block;
}
.vc-product-item {
    border: 0.5px solid rgb(207, 207, 207);
    border-radius: 4px;
    background: rgb(255, 255, 255);
    padding: 15px 30px 15px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}
#vc-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vc-product-left {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.25px solid rgb(0, 0, 0);
    border-radius: 4px;
    background-color: #dddddd;
    padding: 5px;
}
.vc-product-left img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
.vc-product-right {
    width: calc(100% - 76px);
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.vc-product-right-name {
    color: rgb(60, 60, 60);
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    margin: 0;
}
.vc-product-right-price {
    color: rgb(60, 60, 60);
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    margin: 0;
}
.vc-color-select input {
    display: none;
}
.vc-color-select {
    display: flex;
    gap: 10px;
}
.vc-color-select label {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    cursor: pointer;
    margin: 0;
}
.vc-color-select label.active-color {
    border: 1px solid #ff0000;
}
.vc-add-product {
    display: flex;
    position: absolute;
    right: 15px;
    cursor: pointer;
    top: 50%;
    transform: translate(0, -50%);
}
#fabric-canvas {
    display: none;
    width: 100%;
    height: 100%;
}
#vc-popup {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9;
}
#vc-popup.vc-popup-active {
    display: flex;
}
#vc-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
#vc-popup-content {
    position: relative;
    padding: 30px 30px 30px;
    border-radius: 10px;
    background-color: #FFF;
}
#vc-popup-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 22px;
    display: flex;
    line-height: 14px;
    cursor: pointer;
}
#vc-popup-content-button {
    text-align: center;
    padding-top: 30px;
}
#vc-popup-content-button a {
    color: #F0F6FC;
    font-family: Inter;
    font-size: 11.2px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    background: #5fb4a8;
    text-align: center;
    padding: 13px;
    cursor: pointer;
}

#vc-popup-content-button a:hover {
    background: #5fb4a8;
}
#vc-popup-form {
    display: none;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9;
    position: fixed;
}
#vc-popup-form.vc-popup-form-active {
    display: flex;
}
#vc-popup-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
#vc-popup-form-content {
    position: relative;
    padding: 30px 30px 30px;
    border-radius: 10px;
    background-color: #FFF;
}
#vc-popup-form-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 22px;
    display: flex;
    line-height: 14px;
    cursor: pointer;
}
.vc-popup-form-content-form-title {
    color: rgb(0, 0, 0);
    font-family: Oswald;
    font-size: 29px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
}
.vc-popup-form-content-form-item-text-label {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    padding-bottom: 10px;
}
.vc-popup-form-content-form-item-text-label span {
    color: rgb(255, 0, 0);
}
.vc-popup-form-content-form-item-text-field input {
    border: 0.5px solid rgb(207, 207, 207);
    border-radius: 4px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    height: 45px;
}
.vc-popup-form-content-form-item-text {
    padding-bottom: 20px;
}
.vc-popup-form-content-form-item-textarea-field textarea {
    border: 0.5px solid rgb(207, 207, 207);
    border-radius: 4px;
    height: 150px;
    resize: none;
}
.vc-popup-form-content-form-item-textarea {
    padding-bottom: 20px;
}
.vc-popup-form-content-form-item-policy {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vc-popup-form-content-form-item-policy input {
    width: 18px;
    height: 18px;
    position: relative;
}
.vc-popup-form-content-form-item-policy-label {
    width: calc(100% - 28px);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}
.vc-popup-form-content-form-item-policy-label span {
    color: rgb(255, 0, 0);
}
.vc-popup-form-content-form-item-submit input {
    background: rgb(28, 117, 188);
    width: 100%;
    color: rgb(240, 246, 252);
    font-family: Inter;
    font-size: 11.2px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 30px;
}
#vc-popup-succesfull {
    display: none;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9;
    position: fixed;
}
#vc-popup-succesfull.vc-popup-succesfull-active {
    display: flex;
}
#vc-popup-succesfull-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
#vc-popup-succesfull-content {
    position: relative;
    padding: 30px 30px 30px;
    border-radius: 10px;
    background-color: #FFF;
    max-width: 400px;
}
#vc-popup-succesfull-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 22px;
    display: flex;
    line-height: 14px;
    cursor: pointer;
}
#vc-popup-succesfull-content-title {
    color: rgb(0, 0, 0);
    font-family: Oswald;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
    text-align: center;
}

#vc-popup-form-content-preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: none;
    width: 100%;
    max-width: 299px;
}
.vc-popup-form-content-loader #vc-popup-form-content-preloader {
    display: block;
}
.vc-popup-form-content-loader:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}
#vc-popup-form-preloader-wrap-image {
    width: 60px;
    height: 60px;
    margin: auto;
}
#vc-popup-form-preloader-wrap-text {
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-size: 22px;
    line-height: 26px;
}
.vc-handle {
    position: absolute;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background: #000;
}
#general-price {
    display: flex;
    justify-content: center;
    gap: 10px;
}
#general-price-label {
    font-size: 18px;
    font-weight: bold;
}
#general-price-value {
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width: 1300px) {
    #vc-constructor-wrapper {
        padding: 0 30px;
        max-width: 100%;
    }
}
@media screen and (max-width: 991px) {
    #vc-constructor-wrapper {
        height: auto;
    }
    #vc-constructor-left {
        width: 100%;
        height: 600px;
    }
    #vc-constructor-right {
        width: 100%;
        height: 700px;
    }
}
@media screen and (max-width: 767px) {
    #vc-constructor-wrapper {
        padding: 0 20px;
    }
}
.drag-handle {
    position: absolute;
    width: 24px;
    height: 24px;
    /*background-color: rgba(78, 176, 255, 0.57);*/
    z-index: 100;
    cursor: move;
    padding: 2px;
}
.drag-handle:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(78, 176, 255, 0.57);
    border-radius: 50%;
    margin-top: -2px;
    margin-left: -2px;
}
.drag-tl {
    background-image: url(/wp-content/plugins/visual-constructor/assets/corner-white.png);
    transform: rotate(180deg);
    background-size: 100%;
}
.drag-tr {
    background-image: url(/wp-content/plugins/visual-constructor/assets/corner-white.png);
    transform: rotate(270deg);
    background-size: 100%;
}
.drag-br {
    background-image: url(/wp-content/plugins/visual-constructor/assets/corner-white.png);
    background-size: 100%;
}
.drag-bl {
    background-image: url(/wp-content/plugins/visual-constructor/assets/corner-white.png);
    transform: rotate(90deg);
    background-size: 100%;
}

.drag-handle-move {
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 100;
    cursor: move;
}