.subscribed{
  display: none !important;
}
.ui-resizable-handle {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border: 1px solid #2e6fff;
    position: absolute;
    z-index: 1006;
    display: none !important;
}

.ui-resizable-active{
  display: block !important;
}

.ui-resizable-nw {
    left: -5px;
    top: -5px;
    cursor: nw-resize;
}
.ui-resizable-ne {
    top: -5px;
    right: -5px;
    cursor: ne-resize;
}
.ui-resizable-sw {
    bottom: -5px;
    left: -5px;
    cursor: sw-resize;
}
.ui-resizable-se {
    bottom: -5px;
    right:-5px;
    cursor: se-resize;
}
.ui-resizable-n {
    top: -5px;
    left:50%;
    cursor: n-resize;
}
.ui-resizable-s {
    bottom: -5px;
    left: 50%;
    cursor: s-resize;
}
.ui-resizable-w {
    left:-5px;
    top:calc(50% - 5px);
    cursor: w-resize;
}
.ui-resizable-e {
    right:-5px;
    top:calc(50% - 5px);
    cursor: e-resize;
}


.vp-element{
	width: 100%;
	height: 100%;
  font-size: inherit;
  box-sizing: border-box;
}

#vp_element_tool_wrap{
    width: 70px;
    height: 14px;
    position: absolute;
    background: #2e6fff;
    top: -15px;
    right: 0px;
    border-radius: 7px 7px 0px 0px;
    text-align: center;
    cursor: pointer;
    z-index: 2001;
    display: flex;
    padding-left: 5px;
    text-shadow: none;
}

.vp-element-tool-item{
	  color: white;
    font-size: 11px;
    display: inline-block;
    width: 20px;
    margin-top: 0px;
    line-height: 15px;
    font-family: none;
}
.vp-element-tool-item i{
    font-size: 10px !important;
}

.vp-ele-wrap{
  position: absolute;
  border: 1px solid transparent;
  font-size: 0px;
  display: table;
  opacity: 0;
  padding: 5px;
  box-sizing: border-box;
  z-index: 100;
  display: none;
}
.animated-none{
  opacity: 1;
  display: block;
}
.border-active{
  border-color: #2e6fff;
}

.vp-text-ele{
  width: 100%;
  height: 100%;
  display: table;
}
.vp-button-ele{
  width: 100%;
  height: 100%;
  background-color: #42abff;
  border: 1px solid #0269c8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-button-ele:focus{
  outline: none;
}
.vp-form-ele-dome{
  color: #212529;
}
.vp-form-ele-dome input:focus{
  outline: none;
}
/*.vp-button-ele span{
  display: inline-flex;
  vertical-align: baseline; 

}
.vp-button-ele i{
  display:inline-flex;
  vertical-align: baseline; 
}
*/
.vp-form-ele{
  background: white;
  padding: 20px;
  box-sizing: border-box;
  overflow: auto;
}
.vp-form-ele-item{
  display: grid;
  grid-template-columns: 100px auto;
  grid-gap: 10px;
}

 
.vp-form-ele-dome:not(:last-child){
  margin-bottom: 0.5em;
}
.vp-form-ele-dome input{
  width: 100%;
  height: 3.5em;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #d8e1e6;
  background: #f2f6f8;
  color: inherit;
  font-size: inherit;
}
.vp-form-ele-dome button{
  font-size: inherit;
}
.vp-form-ele-dome input::placeholder{
  color:inherit;
  opacity: 0.8;
}
.vp-form-ele-dome input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: inherit;
}

.vp-form-ele-dome input::-ms-input-placeholder { /* Microsoft Edge */
  color: inherit;
}

.vp-form-ele-label{
    display: flex;
    align-content: center;
    text-align: center;
    align-items: center;
}
.vp-form-desc{
  margin-bottom: 20px;
}
.vp-quiz-ele{
  width: 100%;
  background: #f6f7fa;
  position: relative;
  border: 1px solid #5d5b52;
  padding: 20px;
  font-size: inherit;
  display: table;
  background-size: cover;
  background-position: 50% 0px;
  background-repeat: no-repeat;
}
.vp-quiz-close{
  position: absolute;
  right: 10px;
  top: 2px;
  font-size: 1em;
}
.vp-quiz-question{
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  padding: 1em 0px;
}
 
.vp-quiz-answer-wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5em;

}

.vp-quiz-answer-item{
  font-size: 1em;
  width: 20%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.3em 0.5em;
  background: #edf0f6;
  border:1px solid #d9dde8;
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
}
.answer-item-active{
  background: #cfe8d1 !important;
  border: 1px solid #a5d2ab !important;
}
.vp-answer-checkbox{
    margin-right: 0.5em;
    width: 1.5em;
    height: 1.5em;
    font-size: 0.8em;
    border: 1px solid #ccc;
    border-radius: 3px;
    line-height: 1.5em;
    text-align: center;
    color: #edf0f6;
}
.vp-answer-checkbox i{
  opacity: 0;
}
.answer-item-active .vp-answer-checkbox{
  color: #33ac2e;
  border: 1px solid #33ac2e;
  background: #cfe8d1;
}
.answer-item-active .vp-answer-checkbox i{
  opacity: 1;
}

.vp-timer-ele{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
  grid-gap: 0.5em;
  color: inherit;
}
.vp-timer-value{
  width: 100%;
  padding: 0.8em 0px;
  border-radius: 5px;
  background-color: #cecece5e;
  color: inherit;
  font-size: 1em;
  text-align: center;
  box-sizing: border-box;
}
.vp-timer-title{
  font-size: 0.5em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
}
.vp-slider-ele{
  width: 100% !important;
  height: 100% !important;
  margin: 0px;
  padding: 0px;
  position: relative;
  overflow: hidden;
}

.vp-slider-ele a{
  width: 100% !important;
  height: 100% !important;
}

.vp-slider-ele li{
  width: 100% !important;
  left: 0px !important;
  top: 0px !important;
  height: 100% !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.vp-slider-ele img{
  height: 100%;
  width: 100%;
  position: absolute;
}

.callbacks_nav {
    position: absolute;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    top: 52%;
    left: 0;
    opacity: 0.7;
    z-index: 3;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none;
    height: 61px;
    width: 38px;
    background: transparent url(../../image/themes.gif) no-repeat left top;
    margin-top: -45px;
}
.callbacks_nav.next {
    left: auto;
    background-position: right top;
    right: 0;
}
.vp-share-btn{
  display: inline-block;
  line-height: 2em;
  height: 2em;
  width: 2em;
  text-align: center;
  border-radius: 50%;
  transition: all 0.2;
}
.vp-share-btn:not(:last-child){
  margin-right: 5px;
}
.vp-share-ele{
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-share-twitter{
  color: white !important;
  background: #55ACEE !important;
}

.vp-share-twitter:hover{
  background: white !important;
  color: #55ACEE !important;
}

.vp-share-facebook{
  color: white !important;
  background: #3B5998 !important;
}

.vp-share-facebook:hover{
  background: white !important;
  color: #3B5998 !important;
}

.vp-share-pinterest{
  color: white !important;
  background: #cb2027 !important;
}

.vp-share-pinterest:hover{
  background: white !important;
  color: #cb2027 !important;
}

.vp-file-ele{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2e5bff;
  border: 1px solid #0037ff;
  border-radius: 5px;
}
.vp-video-over{
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: rgb(46, 56, 77);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-video-play-btn{
  display: block;
  line-height: 2em;
  height: 2em;
  width: 2em;
  text-align: center;
  color: white;
  border-radius: 50%;
  background: #4d5f86;
  padding-left: 5px;
}
.vp-video-ele{
  width: 100%;
  height: 100%;
  position: relative;
}
.vp-embed-ele{
  width: 100%;
  height: 100%;
  position: relative;
  display: inline;
}
.vp-element-overlay{
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
}
.vp-cta-ele{
  background-size: 100% 100%;
}
.vp-answer-modal{
  position: absolute;
  top: 15%;
  left: 15%;
  height: 70%;
  width: 70%;
  z-index: 100000;
  background: white;
  border:1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}
.vp-answer-modal-icon{
  font-size: 2em;
  text-align: center;
  color: red;
  margin-top: 1em;
}
.vp-answer-modal-content{
  text-align: center;
  font-size: 1.5em;
  color: red;
  margin-top: 10px;
}
.vp-answer-modal-button{
  text-align: center;
}
.vp-answer-btn{
  width: 100px;
  font-size: 1em;
  border-radius: 5px;
  color: red;
  border: 1px solid red;
  height: 40px;
  margin-top: 20px;
}
.vp-answer-btn-correct{
    border: 1px solid #33ac2e;
    color: #33ac2e;
}
.vp-answer-modal-icon-wrap{
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: 2px solid red;
  line-height: 2em;
}
.vp-answer-correct{
  color: green;
}
.vp-answer-correct .vp-answer-modal-icon-wrap{
  border-color: green;
}
.vp-answer-modal-content.vp-answer-modal-content-correct{
  color: green;
}
.vp-answer-btn.vp-answer-correct{
  border: 1px solid green;
  color: green;
}


.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2e6fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.vp-loader-wrap{
    position: absolute;
    width: 230px;
    height: 110px;
    background: #ecececad;
    top: 20px;
    left: 20px;
    display: none;
}
.vp-loader{
    position: absolute;
    top: 20px;
    left: 75px;
}

.vp-slider-loader-wrap{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffffc7;
    top: 0px;
    left: 0px;
    display: none;
}
.vp-slider-loader{
    position: absolute;
    top: -20px;
    left: 20px;
}
.vp-thumb-loader-wrap{
    position: absolute;
    top: 0px;
    left: 0px;
    background: #ffffff9e;
    width: 100%;
    height: 100%;
    display: none;
}
.vp-thumb-loader{
    position: absolute;
    top: 0px;
    left: 100px;
}



.vp-prodcut-ele{
    background: white;
    box-sizing: border-box;
}
.vp-flex{
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.vp-product-timer-item{
    background-color: #f36229;
    padding: 0.5em;
    width: 3em;
    border-radius: 5px;
}
.vp-product-timer-item .vp-timer-value{
  background-color: transparent !important;
  padding: 0px !important;
  text-align: center;
}
.vp-product-timer-item  .vp-timer-title{

}
.vp-product-title-slider-window{
    width: 80%;
    margin: 0px auto;
    position: relative;
    padding-bottom: 50%;
}
.vp-product-slider-wrap{
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.rslides {
    width: 100% !important;
    height: 100% !important;
}

.rslides li {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100%;
}
.vp-product-price{
  text-decoration: line-through;
  font-size: 0.7em;
}

.vp-product-payment-title{
    display: inline-block;
    background-color: #2e6fff;
    color: white;
    border-radius: 5px;
    padding: 0px 10px;
    margin-top: 10px;
}
.vp-product-pay-btn{
  padding: 0.2em 1em;
  border-radius: 100px;
  background-color: #2e6fff;
  color: white;
  font-size: 0.8em;
  margin-bottom: 0px;
  cursor: pointer;
}
.vp-product-payment-label{
  margin-top: 10px;
}
.vp-product-payment-item{
  padding: 10px;
}
 
.rslides img {
    width: unset !important;
    height: unset !important;
    max-width: 100%;
    max-height: 100%;
}

.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(--vp-accent-bg-color, #ccc);
    border: 1px solid white;
    color: #131734;
}
.rslides_here{
    background-color: white !important;
    border: 1px solid #131734 !important;
}

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

}
.rslides_tabs li:not(:last-child){
    margin-right: 10px;
}
.rslides_nav{
    width: 16px !important;
    height: 30px !important;
    background: #ccc !important;
    overflow: hidden;
    position: absolute;
    top: calc(50% - 20px);
    z-index: 10000;
    border-radius: 0px 5px 5px 0px !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 14px;
}
.rslides_nav.next{
    left: unset;
    right: 0px;
    border-radius: 5px 0px 0px 5px !important;
}
.rslides_nav:hover{
    text-decoration: none;
}
.rslides li{
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100%;
}

.vp-product-img-item{
    border: 1px solid #ececec;
    margin-top: 10px;
    position: relative;
    text-align: center;
}
.vp-product-img-item img{
    max-width: 100%;
    max-height: 150px;
}
.vp-product-img-action-wrap{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #bfbebe61;
    display: none;
}
.vp-product-img-item:hover .vp-product-img-action-wrap{
    display: flex;
}
.vp-product-img-action{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 14px;
    background-color: #2e6fff;
    border-radius: 50%;
}
.vp-product-img-wrap{
    position: relative;
}

.vp-reward-ele{
    display: flex;
    align-items: center;
    justify-content: center;
}
.vp-reward-note-wrap{
    margin-right: 10px;
    font-size: inherit;
}

div[data-title="reward"]{
    height: unset !important;
}
.vp-reward-type-wrap{
  margin-top: 10px;
}

.vp-reward-popup-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 100000000;
}
.vp-reward-popup-content{
    width: 80%;
    max-width: 800px;
    min-height: 100px;
    max-height: 90%;
    position: relative;
    background-color: #FFD268;
    padding: 40px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    overflow-y: auto;
    overflow-x: hidden;
}
.vp-reward-content{
    position: relative;
}
.vp-reward-popup-close{
  width: 24px;
  height: 24px;
  background-color: white;
  color: black;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 20px;
}
.vp-reward-lock-wrap{
  display: grid;
  grid-template-columns: auto 120px;
  grid-gap: 20px;
}
.vp-reward-play-btn{
  background-color: #FF2E50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: inherit;
}

.vp-reward-unlock-btn{
  background-color: #FF2E50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0px auto;
}

.vp-reward-play-btn-icon{
  margin-right: 10px;
  background-color: white;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  color: #FF2E50;
  font-size: 0.7em;
  padding-left: 2px;
}
.vp-reward-img-content{
  width: 80%;
  margin: 0px auto;
  text-align: center;
}
.vp-reward-img-content img{
  max-width: 100%;
  max-height: 200px;
}
.vp-reward-title-wrap{
  margin-top: 20px;
  text-align: center;
  font-size: 16px;

}
.vp-reward-description-wrap{
  margin-top: 10px;
  text-align: center;
}
.vp-reward-btn-wrap{
  text-align: center;
  margin-top: 20px;
}

.vp-coupon-wrap{
    position: fixed;
    top: 100px;
    left: 300px;
    padding: 20px;
    width: 350px;
    background-color: white;
    border-radius: 5px;
    z-index: 100000;
    box-shadow:0px 0px 4px #4c557de0;
}
.vp-coupon-wrap:after{
    content: '';
    border: 10px solid transparent;
    border-top-color: white;
    position: absolute;
    bottom: -20px;
    left: 165px;
}
.vp-coupon-title{
    font-size: 16px;
}


.vp-copy-item-wrap{
    position: relative;
}
.vp-copy-item-btn{
    position: absolute;
    right: 9px;
    bottom: 9px;
    width: 20px;
    height: 20px;
    background-color: #99999c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.vp-copy-item-wrap:hover .vp-copy-item-btn{
    opacity: 1;
    visibility: visible;
}

div, body, span, p, img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

[contenteditable="true"] { 
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}
.vp-timer-desc{
  text-align: center;
  font-size: 0.8em;
}

.vp-player-icon-wrap{
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.vp-player-icon-item{
    width: 100%;
    height: 100px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vp-player-icon-item img{
    max-width: 100%;
    max-height: 100px;
}
.vp-player-icon-content{
    padding-right: 10px;
    height: 300px;
}
.vp-player-icon-content .mCSB_container{
    margin-right: 0px !important;
}
.active-icon-item{
    border: 1px solid #2e6fff !important;
    position: relative;
}
.active-icon-item:after{
    content: '\2713';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #2e6fff;
    color: white;
    font-size: 9px;
}

.vp-video-player-btn{
    --boxshadow-25-color: rgba(117,146,252, 0.5);
    --boxshadow-50-color: rgba(117,146,252, 1);
}
.vp-blinking{
    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);
  }
}

.vp-zoom{
    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);
    }
}


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

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

.vp-timer-toggle-wrap{
  position: absolute;
  top: -20px;
  left: 315px;
  width: 80px;
  height: 20px;
  border-radius: 5px 5px 0px 0px;
  background-color: #2e6fff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}