.vt-before-action-content{
    position: absolute;
    right: 0px;
    bottom: 45px;
    background-color: #252b4bc9;
    width: 180px;
    box-shadow: 0px 0px 10px #1b223f;
    display: none;
}
.vt-before-action-item{
    font-size: 14px;
    padding: 10px 20px;
    border-bottom: 1px solid #b1b7c81a;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: normal;
    cursor: pointer;
}
.vt-before-action-item:last-child {
    border: none;
}
.checkout-spec{
    margin: 0px auto;
}

.vt-info-spot{
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
}

.vt-audio-pause-wrap{
    position: absolute;
    background-color: #000000e6;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    top: -24px;
    border: 1px solid white;
    left: 2px;
}

.vt-audio-pause-wrap img{
    width: 10px;
}
.vt-user-wait-room{
    position: fixed;
    left: 50px;
    top: 50px;
    width: 300px;
    height: 100px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;

}
.vt-user-wait-room-inner{
    border: 1px solid #cccccc1f;
    padding: 20px;
    border-radius: 5px;

}
.vt-wait-room-close{
    position: absolute;
    right: 2px;
    left: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a314c;
    border-radius: 50%;
    padding: 0px;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    top: 2px;
    border: 1px solid #1b223f;
    cursor: pointer;
}
.vt-info-spot-view{
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border:2px solid white;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	font-size: 34px;
    --boxshadow-25-color: rgba(250,100,0, 0.5);
    --boxshadow-50-color: rgba(250,100,0, 1);
}
.vt-blinking-effect{
    animation: shadow-animation 2s infinite;
}

@-webkit-keyframes shadow-animation {
  0% {
    -webkit-box-shadow: 0 0 0px 0px var(--boxshadow-50-color);
  }
  25% {
      -webkit-box-shadow: 0 0 5px 5px var(--boxshadow-25-color);
  }
  50% {
      -webkit-box-shadow: 0 0 10 10px var(--boxshadow-50-color);
  }
  75% {
      -webkit-box-shadow: 0 0 5px 5px var(--boxshadow-25-color);
  }
  100% {
      -webkit-box-shadow: 0 0 0px 0px var(--boxshadow-50-color);
  }
}
@keyframes shadow-animation {
  0% {
    -moz-box-shadow: 0 0 0 0 var(--boxshadow-50-color);
    box-shadow: 0 0 0 0 var(--boxshadow-50-color);
  }
  25% {
      -moz-box-shadow: 0 0 5px 5px var(--boxshadow-25-color);
      box-shadow: 0 0 5px 5px var(--boxshadow-25-color);
  }
  50% {
      -moz-box-shadow: 0 0 10 10px var(--boxshadow-50-color);
      box-shadow: 0 0 10 10px var(--boxshadow-50-color);
  }
  75% {
      -moz-box-shadow: 0 0 5px 5px var(--boxshadow-25-color);
      box-shadow: 0 0 5px 5px var(--boxshadow-25-color);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 var(--boxshadow-50-color);
    box-shadow: 0 0 0 0 var(--boxshadow-50-color);
  }
}

.vt-zoom-effect{
    animation: zoominoutsinglefeatured 2s infinite;
}


@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1.4,1.4);
    }
    100% {
        transform: scale(1,1);
    }
}

@-webkit-keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1.4,1.4);
    }
    100% {
        transform: scale(1,1);
    }
}


.vt-flip-effect{
    animation: vt-flip-animation 2s infinite;
}
@keyframes vt-flip-animation {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}
@-webkit-keyframes vt-flip-animation {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

.vt-fade-effect{
    animation: vt-fade-animation 2s infinite;
}
@keyframes vt-fade-animation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes vt-fade-animation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.vt-info-spot{
    
    border-radius: 50%;
    z-index: 2 !important;

}
.vt-draw-hotspot{
    z-index: 0 !important;
}


.vt-info-spot i{
	font-size: inherit;
}

.vt-info-spot-hover{
	display: none;
    position: absolute;
    transition: all 0.2s ease-out;
    padding: 4px 20px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    background-color: var(--vt-accent-bg-color-65, #131734cc);
    width: max-content;
    bottom: -35px;
}
.vt-info-spot:hover .vt-info-spot-hover{
	display: flex;
}

.vt-hotspot-preview-wrap{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}
.vt-hotspot-preview-window{
	width: 100%;
	max-width: 750px;
	position: relative;
	background-color: #1b223fe6;
    max-height: calc(100VH - 50px);
    padding: 10px 0px;
    box-sizing: content-box;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: #00e38c #464d6a;
    scrollbar-width: thin;
}
.vt-hotspot-preview-window::-webkit-scrollbar {
    width: 5px;
    background-color: #464d6a ; 
}

.vt-hotspot-preview-window::-webkit-scrollbar-thumb {
    background: #00e38c ;
}

.vt-hotspot-preview-window .mCustomScrollBox{
    max-height: calc(100VH - 50px) !important;
}
.vt-hotspot-preview-window .mCSB_container{
    margin-right: 0px !important;
}
.vt-hotspot-preview-window .mCSB_container{
    margin-right: 0px;
}
.vt-hotspot-preview-inner{
    position: relative;
    padding: 60px;
}
.vt-hotspot-preview-title{
	font-size: 32px;
    margin-bottom: 10px;
}
.vt-hotspot-preview-content{
    margin-top: 20px;
    align-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-hotspot-preview-close{
	position: absolute;
    right: 55px;
    left: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a314c;
    border-radius: 50%;
    padding: 0px;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    top: 40px;
    border: 1px solid #1b223f;

}
.vt-link-info-wrap{
	width: 100%;
	text-align: left;
	font-size: 20px;
}
.vt-link-info-wrap a{
	color: white !important;
    text-decoration: underline;
    cursor: pointer;
}
.vt-link-info-wrap a:hover{
    color: #00e38c !important;
}
.vt-file-info-wrap{
	width: 100%;
	text-align: left;
}
.vt-file-info-wrap button{
	min-width: 150px;
}
.vt-form-info-wrap{
	width: 100%;
    border: 1px solid #303754;
	padding: 20px;
    background: #1b223fc4;
}
.vt-form-item:not(:last-child){
	margin-bottom: 20px;
}
.vt-form-item button{
	min-width: 200px;
}

.vt-video-info-wrap{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
}
.vt-video-info-wrap iframe, .vt-video-info-wrap video{
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
}


.vt-img-info-wrap img{
    max-width: 100%;
    max-height: 350px;
}

.vt-img-info-wrap{
	
}

.vt-html-info-wrap{
	width: 100%;
    overflow: auto;
}

.vt-viewer-window-wrap{
	position: relative;
	width: 100%;
	height: 100%;
}
.vt-viewer-window{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.vt-viewer-info-wrap{
	display: none;
}

#vt_viewer_controls{
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 11;
}
.vt_viewer_ctrl{
	background-color: white;
	color: #505978;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border:2px solid white;
    transition: all 0.2s;
    position: relative;
}
.vt_viewer_ctrl img{
    width: 18px;
}
.vt_viewer_ctrl:hover{
	border-color: rgb(0, 227, 140);
}

.vt-viewer-scene-wrap{
	height: 110px;
    background-color: #1b223fa6;
    border-top: 4px solid #1b223f;
    position: relative;
    transition: all 0.2s ease-out;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
}
.vt-viewer-scene-window{
    text-align: left;
    padding: 10px 20px;
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
}
.vt-viewer-scene-item {
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #1b223fa6;
    border-color: var(--vt-accent-bg-color-65, #1b223fa6);
    margin-right: 20px;
    display: inline-block;
    font-size: 0px;
    position: relative;
    cursor: pointer;
}
.vt-viewer-scene-item img {
    height: 80px;
}
.vt-scene-item-active{
	border-color: var(--vt-accent-bg-color,  #00e38c);
}
.vt-viewer-scene-wrap-toggle{
    position: absolute;
    width: 100px;
    height: 20px;
    background-color: #1b223f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 5px 0px 0px;
    top: -24px;
    left: calc(50% - 50px);
    cursor: pointer;
    color: white;
}
.vt-viewer-scene-window-wrap .mCSB_container{
	margin-bottom: 5px !important;
}

.mCSB_dragger_bar{
    background-color:  var(--vt-accent-bg-color, #00e38c) !important;
}
/*.vt-btn-success{
    background-color: var(--vt-accent-bg-color, #00e38c) !important;
    color: white;
}
.vt-btn-success:hover {
    background-color: var(--vt-accent-bg-color-65, #00e38c) !important;
    color: white;
}
*/
.vt-water-mark-wrap{
    z-index: 1000000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.vt-water-mark-wrap img{
    max-width: 250px;
    max-height: 100px
}

.vt-contact-title{
    font-size: 24px;
    text-shadow: 1px 1px 3px #040408;
}
.vt-contact-desc{
    display: inline-block;
    background: #1c25328a;
    line-height: 16px;
    text-shadow: 1px 1px black;
}
.vt-contact-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00e38c;
    margin-top: 5px;
    padding: 5px 20px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
}
.vt-contact-btn i{
    margin-right: 10px;
}

.vt-powered-by-wrap{
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    z-index: 1000000;
}
.vt-powered-by-logo-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.vt-powered-by-text-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.vt-powered-by-logo-wrap img{
    height: 24px;
}
.vt-review-window{
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: calc(100VW - 40px);
    max-width: 400px;
    background: #1b223fd9;
    border-radius: 5px;
    box-shadow:0px 0px 4px #495582;
    z-index: 10000000;
}
.vt-review-wrap{
    width: 100%;
    padding: 40px;

}
.vt-review-header-wrap{
    display: grid;
    grid-template-columns: 50px auto 120px;
    grid-gap: 20px;
}
.vt-review-title{
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    text-align: left;
}
.vt-review-name{
    margin-top: 5px;
    font-size: 16px;
    color: #ccc;
    text-align: left;
}
.vt-review-img-wrap{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid white;
}
.vt-review-img-wrap img{
    max-width: 50px;
    max-height: 50px;
}
.vt-review-comment{
    margin-top: 10px;
    text-align: left;
}
.vt-review-star-wrap{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.vt-review-star-wrap i{
    margin-right: 5px;
    font-size: 20px;
}

 
.vt-review-close {
    position: absolute;
    right: 8px;
    left: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #131734;
    border-radius: 50%;
    padding: 0px;
    color: white;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    top: 8px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid #1b223f;

    z-index: 100;
}
.vt-review-active{
    color: #ffbc00;
}

.vt-contact-window{
    background-color: #1b223fd9;
    padding: 40px 60px;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    z-index: 1000000;
    
}
.vt-contact-window-title{
    font-size: 24px;
    text-align: center;
}
.vt-contact-window-desc{
    font-size: 16px;
    text-align: center;
    color: #ccc;
}
.vt-contact-window-btn{
    width: 100%;
    margin-top: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-viewer-signup-wrap{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a1a6bb78;
}
.vt-viewer-signup-window{
    width: 100%;
    max-width: 650px;
    background-color: #1b223fe6;
    padding: 60px 100px;
    border-radius: 5px;
    box-shadow:0px 0px 4px #2b3761;
    margin-bottom: 50px;
    position: relative;
}
.vt-viewer-signup-item:not(:last-child){
    margin-bottom: 30px;
}
.vt-viewer-signup-labal{
    margin-bottom: 5px;
}
.vt-viewer-signup-title{
    font-size: 28px;
}

.vt-chat-room-wrap{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.vt-chat-login-window{
    width: 100%;
    max-width: 600px;
    background-color: #1b223fe6;
    border-radius: 5px;
    position: relative;
    max-height: 100VH;
    overflow: auto;
    text-align: center;
    min-height: 270px;
}
.vt-chat-user-title{
    font-size: 28px;
    text-align: center;
}
.vt-chat-user-desc{
    color: #a2a3a5;
    font-style: italic;
}
.vt-chat-user-item{
    margin-top: 20px;
    z-index: 10000;
}
.vt-chat-user-wrap{
    padding: 60px 0px;
    max-width: 300px;
    margin: 0px auto;
    width: 100%;
}
.vt-chat-join-log-wrap{
    padding: 60px;
}
.vt-chat-room-close{
    position: absolute;
    right: 10px;
    left: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a314c;
    border-radius: 50%;
    padding: 0px;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    top: 10px;
    border: 1px solid #1b223f;

}

.vt-video-setting-wrap{
    width: 100%;
    max-width: 400px;
    padding: 60px 0px;
    margin:0px auto;
}
.vt-video-camera-wrap{
    position: relative;
    height: 0px;
    padding-bottom: 75%;
    border-radius: 5px;
}
.vt-video-camera-wrap video{
    position: relative;
    width: 100%;
}
.vt-video-setting-content{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.vt-video-setting-item{
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vt-video-setting-item:not(:last-child){
    margin-right: 40px;
}
.vt-video-setting-item img{
    height: 20px;
}
#vt_general_chat {
    border: 1px solid #303754;
    padding: 10px;
}
.vt-general-chat-window-wrap{
    width: 100%;
    height: 350px;
    margin-top: 30px;
}
.vt-general-chat-window-wrap .mCSB_3_container{
    margin-right: 20px !important;
}
.vt-general-chat-window-wrap .mCSB_draggerContainer{
    left: 10px !important;
}
.vt-general-chat-window{
    
}
.vt-generan-chat-input{
    margin-top: 10px;
    display: grid;
    grid-template-columns: auto 40px;
    grid-gap: 10px;
}
.vt-chat-sent-btn{
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1b223f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid #343d60;
}
.vt-video-chat{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: auto;
    position:fixed;
    z-index: 10000;
    height: 200px;
}
.vt-video-chat-wrap{
    display: grid;
    grid-template-columns: 400px auto;
    width: 100%;
}
.vt-video-full-window{
    display: block !important;
}
.vt-video-full-window .vt-video-chat-wrap{
    display: block;
}


.vt-message-content{
    width: 100%;  
    margin-top: 20px;
}
.vt-message-title-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.vt-message-icon{
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #04b974;
}
.vt-message-name{
    margin: 0px 10px;
}

.vt-message-date{
    color: #929292;
}

.vt-message-body-wrap{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 5px;
    padding-bottom: 15px;
    position: relative;
    grid-gap: 10px;
}
.vt-chat-edit-btn{
    position: absolute;
    right: 4px;
    bottom: 18px;
    width: 24px;
    height: 24px;
    border: 1px solid #444d6c;
    display: none;
    align-items: center;
    justify-content: center;
    background: #1b223fe3;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}
.vt-message-edit-icon{
    display: none;
    color: #9da8e3;
}
.vt-chat-edited .vt-message-edit-icon{
    display: block;
}
.vt-message-body-wrap:hover .vt-chat-edit-btn{
    display: flex;
}
.vt-message-body{
    width: 80%;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    text-align: left;
    white-space: pre-line;
    background-color: #252B4B;
    border-radius: 0px 10px 10px 10px;
    box-shadow: 0px 8px 12px #151C34;
    word-break: break-all;
}
 

.vt-user-me .vt-message-title-wrap{
    justify-content: flex-end;
}
.vt-user-me  .vt-message-body-wrap{
    justify-content:  flex-end;
}
.vt-user-me  .vt-message-body{
    text-align: right;
    background-color: #252B4B;
    border-radius: 10px 0px 10px 10px;
    box-shadow: -5px 8px 12px #151C34;
}
.vt-user-me  .vt-message-body:after{
    right: 20px;
    left: unset;
    border-bottom-color: #b9920440;
}
.vt-user-me  .vt-message-icon{
    background-color: #b99204;
}

.vt-video-chat-window{
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    background-color: #1b223fe6;
    padding: 10px;
    margin-top: 40px;
    position: relative;
    height: 164px;
    z-index: 10;
    position: fixed;
    width: 400px;
    left: 0px;
}

.vt-video-window-toggle{
    position: absolute;
    right: -16px;
    width: 16px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00e38c;
    border-radius: 0px 10px 10px 0px;
    font-size: 20px;
}

.vt-video-full-window .vt-video-chat-window{
    position: fixed;
    top: 50px;
    left: 200px;
    margin-top: 50px;
    height: unset;
    grid-gap: 20px;
    padding: 20px;
    width: 100%;
}
.vt-video-full-window .vt-live-video-log{
    grid-gap: 20px;
}
.vt-video-full-window .vt-video-window-toggle{
    display: none;
}
.vt-live-video-log-wrap{
    height: 142px;
    overflow: auto;
}
.vt-live-video-log-wrap .mCSB_container{
    margin-right: 10px !important;
}
.vt-live-video-log-wrap .mCSB_draggerContainer{
    right: -10px !important;
}
.vt-live-video-log{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    margin-bottom: 40px;
}
.vt-video-setting-window{
    margin-top: 40px;
    position: fixed;
    left: calc(50VW - 50px);
}
.vt-video-action-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    background-color: #4a4f69bf;
    border-radius: 50px;
    height: 40px;
}
.vt-video-action-item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}
.vt-video-action-item:not(:last-child){
    margin-right: 30px;
}
.vt-video-action-item img{
    height: 20px;
}
.vt-chat-setting-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-left: 100px;
    background-color: #4a4f69bf;
    padding: 0px 20px;
    border-radius: 50px;
}
.vt-chat-setting-item{
    position: relative;
}
.vt-messge-chat-note{
    position: absolute;
    right: -7px;
    top: -5px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background-color: #00e38c;
    color: white;
    font-size: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vt-chat-setting-item:not(:last-child){
    margin-right: 30px;
}
.vt-chat-setting-item img{
    height: 20px;
}
.vt-setting-display-window{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    margin: 0px auto;
}
.vt-chat-setting-window{
    background-color: #1b223fe6;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 5px;
    margin-top: 50px;
    position: relative;
    margin-right: 20px;
    max-height: calc(100VH - 130px);
    overflow: auto;
}
.vt-chat-setting-window-close{
    position: absolute;
    right: 20px;
    left: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a314c;
    border-radius: 50%;
    padding: 0px;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    top: 20px;
    border: 1px solid #1b223f;

}
#vt_general_chat_input{
    border: 0px !important;
}

.vt-reward-wrap-title{
     text-align: center; 
    font-size: 32px;
    padding-bottom: 20px;
}
.vt-reward-img-wrap {
    text-align: center;
}
.vt-reward-img-wrap img{
    max-width: 350px;
    max-height: 300px;
}
.vt-reward-title{
    text-align: center;
    font-size: 18px;
    padding-top: 20px;
}
.vt-reward-description{
    padding-bottom: 30px;
    text-align: center;
}
.vt-reward-btn-wrap{
    text-align: center;
}
.vt-reward-btn{
    border-radius: 20px;
    min-width: 200px;
}
.vt-prodcut-view-wrap{
    text-align: center;
    width: 100%;
}
.vt-product-details-wrap{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 350px auto;
}
@media(max-width: 768px){
    .vt-prodcut-view-wrap{
        padding: 0px 20px;
    }
    .vt-product-details-wrap{
        display: flex;
        flex-flow: column;
        grid-gap: 20px;
    }

}
.vt-product-description{
    margin-top: 10px 0px;
    text-align: left;
}
.vt-product-title{
    font-size: 24px;
    grid-gap: 10px;
}
.vt-product-more-title{
    font-size: 18px;
    margin: 10px 0px;
    text-align: left;
}
.vt-product-count-wrap{
}
.vt-product-variation-wrap{
    display: grid;
    grid-template-columns: auto 100px;
    grid-gap: 10px;
    margin-bottom: 5px;
}

.vt-product-count-btn{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: #00e38c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}
.vt-product-count-btn-disable{
    background-color: #00e38c8f;
}
.vt-product-count{
    width: 40px;
    text-align: center;
}
.vt-product-price-wrap{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 10px 0px;
    font-size: 18px;
}
.vt-prodcut-img-wrap{
    text-align: center;
}
.vt-prodcut-view-wrap img{
    max-width: 350px;
    max-height: 300px;
    top: unset;
    left: unset;
}
.rslides img{
    width: unset !important;
    height: unset !important;
}
.vt-prodcut-view-wrap .vt-zoom-img-wrap img{
    position: absolute;
    width: 1600px !important;
    height: auto !important;
    max-width: unset !important;
    max-height: unset !important;
}
.strike-price{
    margin-left: 10px;
    font-size: 14px;
    text-decoration: line-through;
    color: #ccc;
    text-transform: uppercase;
}
.vt-timer-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
}
.vt-timer-item:not(:last-child){
}
.vt-prodcut-view-wrap .vt-timer-wrap{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 400px;
    margin: 0px auto;
}
.vt-timer-content{
    font-size: 26px;
    text-align: center;
    line-height: 24px;
}
.vt-timer-desc{
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
}
.vt-product-timer-title{
    text-align: center;
    color: #ccc;
    padding: 10px 0px;
}
.vt-user-draw-window{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #ff000000;
    z-index: 3;
}
.vt-user-draw-pan-wrap{
     position: absolute;
    left: 0px;
    top: 230px;
    width: 60px;
    border-radius: 0px 10px 10px 0px;
    height: 345px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    grid-gap: 5px;
    padding: 10px 0px;
}
.vt-user-draw-type{
    width: 28px;
    height: 28px;
    border: 1px solid #8990ad;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8990ad;
    cursor: pointer;
}
.vt-user-draw-type img{
    width: 20px;
}
.vt-user-color-item{
    width: 18px;
    height: 18px;
    border:  2px solid #ccc;
    border-radius: 5px;
    background-color: red;
    cursor: pointer;
}
.vt-user-draw-btn{
    width: 50px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vt-user-draw-type-active{
    background-color: #131734;
    border: 1px solid #00e38c;
}
.vt-user-draw-window-sign{
    position: absolute;
    left: 1px;
    top: 0px;
    border-radius: 0px 0px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 25px;
    background-color: #00e38c;
}

@media(max-width: 700px){
    .vt-chat-room-wrap{
        display: flex;
        overflow: auto !important;
    }
    .vt-chat-room-window .vt-tab-content-wrap{
        padding: 0px 10px !important;
    }

    .vt-modal{
        width: 100% !important;
        left: 0px !important;
        padding: 10px !important;
    }
    .vt-floor-plan-wrap{
        display: block;
        overflow: auto !important;
    }
    .vt-floor-plan-main{
        display: block ;
        text-align: center !important;
    }
    .vt-floor-plan-main-image-wrap{
        min-width: unset !important;
        width: 100% !important;
    }
    .vt-social-share-wrap{
        display: block;
    }
    .vt-payment-icon{
        display: none;
    }
    .vt-video-chat-wrap{
        display: block;
    }
    .vt-video-setting-window{
        display: block;
        position: relative;
        left: unset;
        margin-top: 15px;
    }
    .vt-chat-setting-wrap{
        margin-left: 0px;
        margin-top: 5px;
    }
    .vt-video-setting-inner{
        display: block !important;
    }
    .vt-video-chat-window{
        margin: 0px;
        width: 100%;
        margin-top: 10px;
        position: relative;
    }
    .vt-video-window-toggle{
        display: none;
    }
    .vt-video-full-window .vt-video-chat-window{
        top: 150px;
        position: relative;
    }
    .vt-chat-setting-window{
        margin-right: 0px;
        position: fixed !important;
        top: 20px;
        z-index: 100000;
    }
    .vt-chat-setting-item[data-title="fullscreen"]{
        display: none;
    }
    .vt-chat-setting-item[data-title="draw"]{
        margin-right: 0px;
    }
    .vt-chat-login-window .vt-video-camera-wrap video{
        position: relative;
        width: 100%;
        max-height: 300px !important;
    }
    .vt-video-chat .vt-video-camera-wrap video{
        max-height: 150px !important;
    }
    .vt-video-chat .vt-video-camera-wrap.vt-video-max-window video{
        max-height: unset !important;
    }
    .vt-user-draw-pan-wrap{
        top: 260px;
    }
    
}

.lock-reward-btn{
    background-color: #79847f !important;
    color: #bfbfbf !important;
}
.swal2-html-container{
    color: #595959;
}
.swal2-icon-content{
    color: #facea8;
}
.vt-coupon-wrap{
    position: fixed;
    top: 100px;
    left: 300px;
    padding: 20px;
    width: 350px;
    background-color: #1b223f;
    border-radius: 5px;
    z-index: 100000;
    box-shadow:0px 0px 4px #4c557de0;
}
.vt-coupon-wrap:after{
    content: '';
    border: 10px solid transparent;
    border-top-color: var(--vt-accent-bd-color, #1b223f) !important;
    position: absolute;
    bottom: -20px;
    left: 165px;
}
.vt-coupon-title{
    font-size: 16px;
}

.vt-plan-spot img{
    cursor: pointer !important; 
}
#vt_hotspot_preview svg{
    z-index: 1000000 !important;
}
.fwSVGcanvas{
    width: 100% !important; 
    height: 100% !important;
}
.rslides_tabs{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    padding: 0px;
    width: 100%;
    bottom: 0px;
    z-index: 100;
}
.rslides_tabs li{
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--vt-accent-bg-color, #303754);
    border: 1px solid white;
    color: #131734;
}
.rslides_here{
    background-color: white !important;
    border: 1px solid #131734 !important;
}

.rslides_tabs li a{
    color: var(--vt-accent-bg-color, #131734);
}
.rslides_tabs li a:hover{
    color: var(--vt-accent-bg-color, #131734);
    text-decoration: none;
}
.rslides_here a{
    color: white !important;
}
.rslides_here{

}
.rslides_tabs li:not(:last-child){
    margin-right: 10px;
}
.rslides_nav{
    width: 20px;
    height: 40px;
    background-color: var(--vt-accent-bg-color, #303754);
    overflow: hidden;
    position: absolute;
    top: calc(50% - 20px);
    z-index: 10000;
    border-radius: 0px 5px 5px 0px;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rslides_nav.next{
    left: unset;
    right: 0px;
    border-radius: 5px 0px 0px 5px;
}
.rslides_nav:hover{
    text-decoration: none;
}
.rslides {
    width: 350px !important;
    height: 300px !important;
}
.rslides li{
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100%;
}
.vt-slider-wrap{
    position: relative;
    border: 1px solid #303754;
    height: 300px;
    max-width: 350px;
    margin: 0px auto;
    overflow: hidden;
}
.vt-viewer-gdpr-wrap{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    margin-top: -20px;
}
.vt-paymnen-window{
    width: 100%;
    max-width: 1024px;
    min-height: 300px;
}
.vt-paymnen-window-inner{
    padding: 60px;
    position: relative;
}
.vt-paymnen-window .mCSB_container{
    margin-right: 0px !important;
}
.vt-payment-title-wrap img{
    height: 24px;
    max-width: 240px;
}
.vt-payment-title-wrap{
    display: grid;
    grid-template-columns: 180px auto;
}
.vt-payment-desc{
    color: #909090;
}

.vt-payment-content{
    padding: 20px;
    background-color: #252b4b;
    border-radius: 5px;
    margin-top: 20px;
}
.vt-payment-content label{
    margin: 0px;
}
.vt-payment-title-wrap label{
    margin: 0px !important;
}

.vt-chat-setting-value .select{
    height: 50px !important;
}
.vt-chat-setting-value.vt-selectbox-wrap:after{
    top: 15px !important;
}
.vt-video-none-wrap{
    display: none;
}
.vt-live-video-log video{
    width: 100%;
}
.vt-edit-label{
    text-align: left;
}
.vt-video-camera-wrap-inner{
    position: relative;
    border: 1px solid #4b506c;
    font-size: 0;
}
.vt-video-user{
    position: absolute;
    bottom: 5px;
    right: 0px;
    padding: 0px 5px;
    border-radius: 5px;
    font-size: 10px;
    width: 100%;
    text-align: center;
}
.vt-video-full-window .vt-video-user{
    bottom: 5px;
    right: 0px;
    font-size: 16px;
    padding: 0px 10px;
}
.vt-video-max-window{
    width: 100% !important;
    position: fixed;
    z-index: 10;
    max-width: 1024px;
    max-height: 100VH;
    overflow: auto;
}

.vt-video-min-btn{
    position: absolute;
    right: 10px;
    left: unset;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #2a314c;
    border-radius: 50%;
    padding: 0px;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    top: 10px;
}
.vt-video-max-window .vt-video-user{
    bottom: 5px;
    right: 0px;
    font-size: 16px;
    padding: 0px 10px;
}
.vt-video-max-window .vt-video-min-btn{
    display: flex;
}
#review_slider_wrap{
    width: 100% !important;
    height: unset !important;
}

.vt-hotspot-preview-description span{
    background-color: transparent !important;
}
.show-hotspot-label{
    display: block !important;
}
.vt-accent-bg-color{
    background-color: var(--vt-accent-bg-color, #1b223f) !important;
}

.vt-accent-bd-color{
    border-color: var(--vt-accent-bd-color, #1b223f) !important;
}
.vt-accent-bg-color-85{
    background-color: var(--vt-accent-bg-color-85, #1b223fd9) !important;
}
.vt-accent-bg-color-65{
    background-color: var(--vt-accent-bg-color-65, #1b223fa6) !important;
}
.vt-accent-bg-color-90{
    background-color: var(--vt-accent-bg-color-90, #1b223fe6) !important;
}
.vt-accent-dark-bg-color{
    background-color: var(--vt-accent-dark-bg-color, #131734) !important;
}
.vt-accent-bg-color-45{
    background-color: var(--vt-accent-bg-color-45, #1b223f73) !important;
}
.calendar td{
    color: white;
    font-weight: normal;
    font-size: 14px !important;
}
.vt-calendar-header{
    display: grid;
    grid-template-columns: auto 30px 30px;
    padding: 0px 25px;
    grid-gap: 10px;
}
.calendar header .simple-calendar-btn{
    position: relative !important;
    border: 2px solid #212741 !important;
}
.calendar header .month{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-size: 24px;
}
.calendar header .month .year{
    margin-left: 10px;
    color: white;
    font-size: 24px !important;
}
.calendar td{
}
.calendar .day.today{
    text-align: center;
    background-color: #00e38c !important;
}
.calendar header .simple-calendar-btn:before {
    content: '';
    position: absolute;
    top: 7px !important;
    left: 8px !important;
    width: 12px !important;
    height: 12px !important;
    border-style: solid;
    border-width: 2px 2px 0 0 !important;
}


#vt_schedule_timezon{
    width: 200px;
    margin-bottom: 20px;
}
#vt_schedule_timezon .select{
    border: 0px;
}
#vt_schedule_timezon:after{
    top: 7px;
    border-color: #00e38c;
}
#vt_schedule_timezon .styledSelect{
    color: #00e38c;
    padding-left: 0px;
}
#user_calendar_wrap #vt_schedule_timezon:after{
    top: 7px;
    border-color: white;
}
#user_calendar_wrap #vt_schedule_timezon .styledSelect{
    color: white;
    background-color: transparent;
}
#user_calendar_wrap #vt_schedule_timezon{
    width: 150px;
    margin-bottom: 0px;
}
#user_calendar_wrap .options{
    max-height: 150px !important;
}

.vt-book-btn{
    cursor: pointer;
}
.vt-book-btn:hover{
    color: #00e38c;
}
.vt-user-appointment-date{
    font-size: 20px;
    margin-bottom: 20px;
}
.vt-user-appointment-window{
    max-height: calc(100VH - 295px);
}
.vt-user-time-wrap{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.vt-user-time-item{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #404867;
    padding: 10px;
    cursor: pointer;
}
.vt-time-disable{
    color: #a5a4a4;
    cursor: not-allowed;
}
.vt-time-active{
    background-color: #00e38c;
}
.vt-admin-schedule-window{
    max-height: calc(100VH - 260px);
}
.vt-admin-schedule-item{
    padding: 10px;
    display: grid;
    grid-template-columns: 100px auto;
    border-top: 1px solid #303754;
}
.vt-schedule-content-item{
    margin:10px 0px;
}
.vt-schedule-title{
    margin-top: 10px;
}
.vt-appointment-item{
    display: grid;
    grid-template-columns: 150px auto 100px;
    padding: 10px 0px;
    border-top: 1px solid #303754;
}
.vt-appointment-time-item{
    border:1px solid #303754;
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
.vt-appointment-action{
    width: 32px;
    height: 32px;
    border-radius: 5px;
    border: 1px solid #303754;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mCSB_scrollTools .mCSB_draggerRail{
    width: 10px !important;
}

.vt-view-play-wrap{
    position: absolute;
    left: 15px;
    bottom: 115px;
    width: 260px;
    height: 40px;
    border-radius: 20px;
    display: block;
    transition: all 0.2s;
    display: grid;
    grid-template-columns: 40px 200px;
    grid-gap: 0px;
    overflow: hidden;
    
}
.vt-view-playline-wrap{
    width: 200px;
    /*opacity: 0;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.vt-view-play-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.vt-view-play-btn img{
    height: 16px;
}
/*.vt-view-play-wrap:hover .vt-view-playline-wrap{
    opacity: 1;
}
.vt-view-play-wrap:hover {
    width: 260px;
}*/

.vt-view-playline-wrap .rangeSlider{
    height: 5px !important;
}
.vt-view-playline-wrap .rangeSlider__fill{
    background-color: #00e38c96 !important;
} 
.vt-view-playline-wrap .rangeSlider__handle{
    width: 14px !important;
    height: 14px !important;
    background: rgb(0, 227, 140) !important;
    border: 1px solid rgb(0, 227, 140) !important;
    top: -4px !important;
}
.vt-canvas-wrap{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.vt-canvas-wrap:nth-child(2) {
    display: block;
    z-index: -1;
}
.vt-scene-main .vt-before-img-view .vt-canvas-wrap:nth-child(2) {
    width: 50%;
    overflow: hidden;
    border-right: 1px solid black;
    display: block;
    z-index: 0;
}

.vt-viewer-window .vt-before-img-view .vt-canvas-wrap:nth-child(2) {
    width: 50%;
    overflow: hidden;
    border-right: 1px solid black;
    display: block;
    z-index: 0;
}

.vt-scene-main .vt-after-img-view .vt-canvas-wrap:nth-child(2) {
    width: 100%;
    overflow: hidden;
    display: block;
    z-index: 0;
}

.vt-viewer-window .vt-after-img-view .vt-canvas-wrap:nth-child(2) {
     width: 100%;
    overflow: hidden;
    display: block;
    z-index: 0;
}

.vt-before-img-item:after{
    content: 'B';
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    background: rebeccapurple;
    color: white;
    font-size: 12px;
    background-color: #00e38c;
    text-align: center;
}
.vt-viewer-window canvas{
    width: 100% !important;
    height: 100% !important;
    /*transition:height 0.2s ease-out;*/
}

.vt-checkout-product-item{
    display: grid;
    grid-template-columns: auto 60px 60px 60px 30px;
    border-bottom: 1px solid #30375438;
    padding: 10px;
}
.vt-prodcut-quantity-input{
    width: 40px;
    background-color: transparent;
    border: none;
    margin-left: 10px;
    color: white;
    border-bottom: 1px solid #303754;
    text-align: center;
}
.vt-checkout-total-wrap{
    display: grid;
    grid-template-columns: 200px auto;
    border-top: 1px solid #303754;
    padding: 10px;
}
.vt-remove-checkout-item{
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    background-color: #8e0404;
    cursor: pointer;
}
.vt-cart-title{
    border-bottom: 1px solid #303754;
    padding: 10px;
}
.vt-empty-cart-btn{
    cursor: pointer;
    padding: 2px 10px;
    border-radius: 5px;
}
.vt-checkout-item-num{
    position: absolute;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #008653;
    font-size: 8px;
    left: 22px;
    top: -2px;
}

@media(max-width: 768px){
    .vt-checkout-title-wrap{
        display: block;
    }
    .checkout-spec{
        display: none;
    }
    .vt-paymnen-window-inner{
        padding: 20px 20px;
    }
    .vt-divi-2{
        display: flex;
        flex-flow: column;
    }
}
.vt-iframe-hotspot .vt-hotspot-preview-inner{
    padding: 0px;
}
.vt-iframe-hotspot .vt-hotspot-preview-title{
    display: none !important;
}
.vt-iframe-hotspot .vt-hotspot-preview-description{
    display: none !important;
}
.vt-iframe-hotspot .vt-hotspot-preview-content{
    position: relative;
    margin: 0px;
    padding-bottom: 74%;
}
.vt-iframe-hotspot .vt-hotspot-preview-window {
    background-color: transparent !important;
    font-size: 0px;
    padding: 0px;
}
.vt-iframe-hotspot iframe{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 0px;
    width: 100%;
    height: 100%;
}
.vt-hotspot-preview-close{
    top: 10px;
    right: 10px;
    z-index: 9999999999;
}
.vt-fixed{
    position: fixed !important;
}
.vt-live-video-log .vt-spotlight-video-wrap{
    position: fixed !important;
    left: 5px !important;
    top: 50px !important;
    width: 190px;
}