<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*

    MAIN PAGE STYLESHEET FOR WEBINARS PAGE

*/
@import "/wp-content/themes/versaccounts/assets/css/folder-name/media-stylesheet.css";
:root {
    --primary: #ffa200;
    --secondary: #ff6f00;
    --dark-bg: #1E1E1E;
    --light-gray: #F1F1F1;
    --dark-txt: #141414;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    line-height: 1.5em;
}
h1 {
    color: var(--primary);
    font-size: 50px;
    line-height: 0.8em;
}
h3 {
    font-size: 40px;
}
p {
    font-size: 16px;
}
.hide {
    display: none !important;
}

/*Hero-SECTION*/
.hero-section {
    background: url(/wp-content/themes/versaccounts/assets/images/webinar/header-webinar.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #77787C;
    background-size: cover;
    max-width: 1920px;
    width: 100%;
    height: 450px;
    margin: 0 auto;
    padding: 0;
    padding-top: 80px;
}
.hero-section .hero-container {
    padding-left: 8rem;
    padding-right: 8rem;
    height: 100%;
}
.hero-section .hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.hero-section .hero-col:nth-child(1) {
    width: 50%;
    flex-basis: 50%;
}
.hero-section .hero-col:nth-child(2) {
    width: 50%;
    flex-basis: 50%;
}
.hero-section .hero-title {
    font-family: 'Raleway';
    font-weight: 900;
    font-size: 50px;
    color: #FFFFFF;
    line-height: 1.2em;
    max-width: 530px;
    width: 100%;
	margin-bottom: 10px;
}
.hero-section .hero-title .orange {
    color: #FFA200;
}
.hero-section .hero-text {
    font-family: 'Raleway';
    font-weight: 100;
    font-size: 18px;
    color: white;
    line-height: 1.75em;
    max-width: 735px;
    width: 100%;
    margin-bottom: 10px;
}
.hero-section .awards-slides {
    display: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: fader 5s infinite ease-in-out;
}
@-webkit-keyframes fader {
    from {opacity: 0.0;}
    to {opacity: 1.0;}
}
@keyframes fader {
    from {opacity: 0.0;}
    to {opacity: 1.0;}
}
.hero-section .slider {
    display: flex;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 5px #AAAAAA;
}
.hero-section .slider h4 {
    font-weight: 700;
    font-size: 20px;
    color: #141414;
    text-align: left;
    line-height: 1.5em;
    margin: 0;        
}
.hero-section .slider p {
    font-weight: 100;
    font-size: 14px;
    color: #141414;
    text-align: left;
    line-height: 1.5em;
    margin: 0;
}
.hero-section .left {
    flex-basis: 40%;
    padding: 2%;
}
.hero-section .right {
    padding: 2% 2%;
    flex-basis: 100%;
}
.hero-section .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1% 0% 1%;
}
.hero-section .dotted {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 8px;
    background-color: #BBB;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.hero-section .active,
.hero-section .dotted:hover {
    background-color: #717171;
}
.hero-section .review-con img {
    width: 100%;
    height: 80px;
    max-width: 150px;
    vertical-align: middle;
}
.hero-section .review-con {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}




.vc-container {
    max-width: 1567px;
    width: 100%;
    margin: 0 auto;
}
.vc-row {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}
.vc-lg-col {
    -ms-flex-preffered-size: 70%;
         -webkit-flex-basis: 70%;
            -moz-flex-basis: 70%;
                 flex-basis: 70%;
}
.vc-md-col {
    -ms-flex-preffered-size: 100%;
         -webkit-flex-basis: 100%;
            -moz-flex-basis: 100%;
                 flex-basis: 100%;
}
.vc-sm-col {
    -ms-flex-preffered-size: 25%;
         -webkit-flex-basis: 25%;
            -moz-flex-basis: 25%;
                 flex-basis: 25%;
}
.vertical-center {
    align-items: center;
	-webkit-align-items: center;
    display: -moz-box;          /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;       /* TWEENER - IE 10 */
    display: -webkit-box;       /* OLD - Chrome, iOS 6-, Safari 3.1-6 */
    display: -webkit-flex;      /* NEW - Chrome */
    display: flex;              /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.center-center {
    justify-content: center;
    display: -moz-box;          /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;       /* TWEENER - IE 10 */
    display: -webkit-box;       /* OLD - Chrome, iOS 6-, Safari 3.1-6 */
    display: -webkit-flex;      /* NEW - Chrome */
    display: flex;              /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.flex-right {
    order: 2;
}
.flex-left {
    order: 1;
}

/* Upcoming Webinar Section */
.upweb-wrapper h2 {
    font-size: 30px;
    color: #141414;
}
section.upcoming-webinar {
    overflow: unset !important;
}
.upcoming-webinar h2 {
    color: #141414;
}
.upweb-wrapper {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 20px;;
}
.upweb-row {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    box-shadow: 9px 8px 17px rgba(0,0,0,0.2);
    margin-bottom: 50px;
    background: #FFFAF2;
    min-height:266px;
    height: auto;
}
.upweb-wrapper .column1 {
    -ms-flex-preffered-size: 30%;
         -webkit-flex-basis: 30%;
            -moz-flex-basis: 30%;
                 flex-basis: 30%;
}
.upweb-wrapper .column2 {
    -ms-flex-preffered-size: 70%;
         -webkit-flex-basis: 70%;
            -moz-flex-basis: 70%;
                 flex-basis: 70%;
     display: -moz-box;
     display: -ms-flexbox;
     display: -webkit-box;
     display: -webkit-flex;
     display: flex;
}
.upweb-row.web1 {
    background: #F9FBFF;
}
.upweb-row.web1 .upweb-col.col3 .inner-col3.date-img span { 
    color: #9987F2;
    font-weight: 600;
}
.upweb-row.web2 .upweb-col.col3 .inner-col3.date-img span { 
    color: #E8505B;
    font-weight: 600;
}
.upweb-row.web3 .upweb-col.col3 .inner-col3.date-img span {
    color: #FAAF41;
    font-weight: 600;
}
.upweb-row.web4 .upweb-col.col3 .inner-col3.date-img span {
    color: #FF7523;
    font-weight: 600;
}
.upweb-row.web5 .upweb-col.col3 .inner-col3.date-img span {
    color: #5FB360;
     font-weight: 600;
}
.upweb-col.col1 {
    -ms-flex-preffered-size: 30%;
         -webkit-flex-basis: 30%;
            -moz-flex-basis: 30%;
                 flex-basis: 30%;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
       -moz-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}
.upweb-col.col2 {
    -ms-flex-preffered-size: 70%;
         -webkit-flex-basis: 70%;
            -moz-flex-basis: 70%;
                 flex-basis: 70%;
    padding: 1% 4%;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
       -moz-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    
}
.upweb-col.col3 {
    -ms-flex-preffered-size: 30%;
         -webkit-flex-basis: 30%;
            -moz-flex-basis: 30%;
                 flex-basis: 30%;
    padding: 20px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
       -moz-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    justify-content: space-evenly;
}
.upweb-col.col1 img {
    width: 100%;
    height: auto;
    max-width: 288px !important;
}
.inner-col2.text {
    height: auto;
    max-height: 135px;
    margin-bottom: 10px;
}
.inner-col2.title h3 {
    margin: 0px 0px 10px 0px;
    font-size: 25px;
    line-height: 1.5em;
    color: #141414;
}
.inner-col2.text p {
    margin: 0px 0px 10px 0px;
    font-size: 14px;
    line-height: 1.5em !important;
    color: #141414;
}
.inner-col2.host-img {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
	-webkit-align-items: center;
}
.inner-col2.host-img span {
    margin-left: 20px;
    font-size: 14px;
    color: #141414;
    font-weight: 600;
}
.inner-col3.date-img {
    padding: 5%;
}
.inner-col3.date h3 {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
    line-height: 1.5em;
    color: #141414;
    text-align: center;
}
.more-pane{ display: none;}
.more-btn{background-color: transparent;
    border: none;
    padding: 0;
    color: #ffa200;
    font-size: 15px;
    display: block;
    outline: none;
    margin-left: 10px;
    display: inline-block;
}
button.more-btn i {
    color: #ffa200;
    margin-left: 5px;
}
.date-img.col1, .date-img.col2 {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
	-webkit-align-items: center;
    margin-bottom: 10px;
    height: 25px;
}
.date-img.col1 img, .date-img.col2 img{
    width: 100%;
    max-width: 21.59px !important;
}
.date-img.col1 .col1-2 {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    background: url('/wp-content/themes/versaccounts/assets/images/webinar/countdown.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 20px;
}
.date-img.col2 .col2-2 {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    background: url('/wp-content/themes/versaccounts/assets/images/webinar/versa_users.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 20px;
}
#counter1,
#counter2,
#counter3,
#counter4,
#counter5 {
    padding-left: 16%;
    color: #141414;
    font-weight: 600;
}
.webinar-btn {
    width: 100%;
    max-width: 225px;
    min-width: 222px;
    padding: 6% 0;
    border: 0;
    border-radius: 5px;
    color: #fff;
}
.webinar-btn.btn-1 {
    background:#9987F2;
}
.webinar-btn.btn-2 {
    background:#E8505B;
}
.webinar-btn.btn-3 {
    background:#FF7523;
}
.webinar-btn.btn-4 {
    background:#FAAF41;
}
.webinar-btn.btn-5 {
    background:#5FB360;
}
.webinar-btn:hover {
    opacity: 0.6;
}

/* Previous Webinars Section */
.prevweb-wrapper {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
  	    flex-direction: column-reverse;
}
.previous-section .row1 {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-left: 0;
    border-radius: 10px;
    box-shadow: 9px 8px 17px rgba(0,0,0,0.2);
    margin: 2% 0%;
}
.previous-section h2 {
    color: #000;
    font-size: 30px;
}
.previous-section h3 {
    font-size: 25px;
    line-height: 1.0em;
}
.previous-section p {
    font-size: 14px;
}
.col-image {
    -ms-flex-preffered-size: 28%;
         -webkit-flex-basis: 28%;
            -moz-flex-basis: 28%;
                 flex-basis: 28%;
}
.col-image .bike {
    width: 100%;
    height: auto;
}
.col-description {
    -ms-flex-preffered-size: 70%;
         -webkit-flex-basis: 70%;
            -moz-flex-basis: 70%;
                 flex-basis: 70%;
}
.col-description .row2 {
	padding: 1% 5% 5% 5%;
}
.row .description {
    display: block;
}
.col-presentor {
    padding-left: 2%;
}
.round {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}
.description div.row {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
	margin-left: 0;
    padding-top: 3%;
}
.description .col-image {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-preffered-size: 60%;
         -webkit-flex-basis: 60%;
            -moz-flex-basis: 60%;
                 flex-basis: 60%;
}
.description .col-button {
    -ms-flex-preffered-size: 40%;
         -webkit-flex-basis: 40%;
            -moz-flex-basis: 40%;
                 flex-basis: 40%;
}
.presentor {
    padding: 2% 0% 2% 5%;
    width: 100%;
}
.webinar-button.b2b {
    border: none;
    background: #9987F2;
    padding: 7% 0%;
    width: 100%;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}
.webinar-button.shopping {
    border: none;
    background: #E8505B;
    padding: 7% 0%;
    width: 100%;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}
.webinar-button.edi {
    border: none;
    background: #FAAF41;
    padding: 7% 0%;
    width: 100%;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}
.webinar-button.integration {
    border: none;
    background: #FF7523;
    padding: 7% 0%;
    width: 100%;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
}
.webinar-button.sbe {
    border: none;
    background: #09462A;
    padding: 7% 0%;
    width: 100%;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
}

/* Got Question Section */
.gotQuestions-section {
    padding: 2% 0%;
    background: url('/wp-content/uploads/2020/03/Got_questions_divider.png');
    background-size: cover;
    background-position: 10% 90px;
    background-repeat: no-repeat;
}
.gotQ-wrapper {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}
.gotQ-wrapper .column1 {
    -ms-flex-preffered-size: 30%;
         -webkit-flex-basis: 30%;
            -moz-flex-basis: 30%;
                 flex-basis: 30%;
}
.gotQ-wrapper .column2 {
    -ms-flex-preffered-size: 70%;
         -webkit-flex-basis: 70%;
            -moz-flex-basis: 70%;
                 flex-basis: 70%;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
.gotQ-wrapper .row {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-left: 0;
}
.column.question {
    -ms-flex-preffered-size: 40%;
         -webkit-flex-basis: 40%;
            -moz-flex-basis: 40%;
                 flex-basis: 40%;
    padding: 2%;
}
.column.question h2 {
    font-size: 30px;
    color: #000;
}
.column.question p {
    font-size: 14px;
    line-height: 1.5em;
}
.column.versaVids {
    -ms-flex-preffered-size: 33%;
         -webkit-flex-basis: 33%;
            -moz-flex-basis: 33%;
                 flex-basis: 33%;
    padding: 1%;
}
.column.knowledgebase {
    -ms-flex-preffered-size: 33%;
         -webkit-flex-basis: 33%;
            -moz-flex-basis: 33%;
                 flex-basis: 33%;
    padding: 1%;
}
.column.getIntouch {
    -ms-flex-preffered-size: 33%;
         -webkit-flex-basis: 33%;
            -moz-flex-basis: 33%;
                 flex-basis: 33%;
    padding: 1%;
}
.wrapper {
    padding: 5%;
    box-shadow: 9px 8px 17px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #fff;
}
.webinar-bttn {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 10% 0%;
    color: #fff;
}
.webinar-bttn:hover {
 	opacity: 0.8;   
}
.versaVids .webinar-bttn {
    background: #1388D5;
    font-size: 14px;
}
.knowledgebase .webinar-bttn {
    background: #ED4200;
    font-size: 14px;
}
.getIntouch .webinar-bttn {
    background: #FFB92E;
    font-size: 14px;
}

/* CTA Section */
section#cta-trial {
    display: none;
}
.survey-section{
	position: relative;
}
.survey-bg{
	width: 100%;
    height: 100%;
    position: absolute;
    background: url(/wp-content/themes/versaccounts/assets/images/webinar/survey-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
.survey-wrap {
    width: 100%;
	max-width: 1080px;
	margin: 0 auto;
    display: block;
    position: relative;
    padding: 5% 3%;
}
.survey.inner-con {
	padding: 5%;
    box-shadow: 9px 8px 17px rgba(0,0,0,0.2);
    border-radius: 15px;
    background: rgba(241, 241, 241, 0.85);
	margin-top: 2%;
}
.survey.inner-con h2 {
    line-height: 1em;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin: 10px auto;
    width: 65%;
    color: #ffa200;
}
.hs-form-required {
    display: none;
}
.hs-form {
    margin-left: 1.5%;
    width: 100%;
}
.hs-form * {
    font-family: 'Raleway';
    font-size: 15px;
}
.hs-form a {
    color: #ffa200 !important;
}
.hs-form a:visited {
    color: #ffa200 !important;
}
.hs-form ul {
    list-style: none;
}
.hs-form ul li {
    margin: 0;
}
.hs-form fieldset {
    width: 100%;
}
fieldset.form-columns-0 {
    margin-top: 30px;
    width: 90% !important;
    max-width: 600px !important;
}
fieldset.form-columns-1,
fieldset.form-columns-3 {
    width: 100% !important;
    margin: 0 auto;
    max-width: unset !important;
}
.hs-form textarea {
    resize: vertical;
    height: auto;
    min-height: 100px;
    width: 98% !important;
}
.input input[type=email] {
    width: 100% !important;height: 40px;
}
.hbspt-form input[type='text'] {
	width: 100%; height: 40px;
}
ul.no-list.hs-error-msgs.inputs-list {
    padding: 10px;
    margin-top: -20px;
}
label.hs-error-msg, label.hs-main-font-element {
    color: red;
    font-size: 12px;
}
.hs-button.primary.large {
    background-image: unset;
    background-color: var(--primary);
    border: none;
    font-size: 19px;
    color: white;
    height: 45px;
    width: 95%;
	max-width: 150px;
    border-radius: 5px;
    text-shadow: none;
    font-family: 'Raleway' !important;
    padding: 0px;
}
.hs-button.primary.large:hover {
    background-color: #ff6200 !important;
}</pre></body></html>