.vsd-333 .vsd-element.vsd-element-7725ca4{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;}.vsd-333 .vsd-element.vsd-element-c4d1796{text-align:center;}.vsd-333 .vsd-element.vsd-element-5dfb0ff > .vsd-widget-container{padding:0px 0px 0px 0px;}.vsd-333 .vsd-element.vsd-element-4387f56{width:var( --container-widget-width, 1150px );max-width:1150px;--container-widget-width:1150px;--container-widget-flex-grow:0;}.vsd-333 .vsd-element.vsd-element-4387f56.vsd-element{--align-self:center;}.vsd-333 .vsd-element.vsd-element-4387f56 > .vsd-widget-container{border-style:none;}.vsd-333 .vsd-element.vsd-element-4387f56 .e-tabs-wrapper .e-tabs-header{background-color:var( --e-global-color-primary );}.vsd-333 .vsd-element.vsd-element-4387f56 .e-tabs-wrapper .e-tabs-header .e-tabs-title{color:#FFFFFF;}.vsd-333 .vsd-element.vsd-element-4387f56 .e-tabs-items-wrapper .e-tab-title:where( .e-active, :hover ) .e-tab-title-text{color:#556068;}.vsd-333 .vsd-element.vsd-element-4387f56 .e-tabs-items-wrapper .e-tab-title:where( .e-active, :hover ) .e-tab-title-text a{color:#556068;}.vsd-333 .vsd-element.vsd-element-4387f56 .e-tabs-items-wrapper .e-section-title{border-style:solid;}.vsd-333 .vsd-element.vsd-element-1dd8e65 > .vsd-widget-container{background-color:#FFFFFF;margin:5px 5px 5px 5px;}.vsd-333 .vsd-element.vsd-element-1dd8e65{text-align:center;}@media(max-width:767px){.vsd-333 .vsd-element.vsd-element-7725ca4{--content-width:100vw;--min-height:100vh;}.vsd-333 .vsd-element.vsd-element-4387f56{width:100%;max-width:100%;}.vsd-333 .vsd-element.vsd-element-1dd8e65{text-align:center;}}@media(min-width:768px){.vsd-333 .vsd-element.vsd-element-7725ca4{--content-width:1160px;}}/* Start custom CSS */.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    z-index: 1;
    max-width:570px;
  }

  .toast .toast-content {
    display: flex;
    align-items: center;
  }

  .toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #4070f4;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
  }

  .toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
  }

  .message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
  }

  .message .text.text-1 {
    font-weight: 600;
    color: #333;
  }

  .toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
  }

  .toast .close:hover {
    opacity: 1;
  }

  .toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
  }

  .toast .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #4070f4;
    animation: progress 5s linear forwards;
  }

  @keyframes progress {
    100% {
      right: 100%;
    }
  }/* End custom CSS */