@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Regular.woff2") format("woff2"),
        url("../fonts/OpenSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "OpenSans-bold";
    src: url("../fonts/OpenSans-Bold.woff2") format("woff2"),
        url("../fonts/OpenSans-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "OpenSans-lightitalic";
    src: url("../fonts/OpenSans-LightItalic.woff2") format("woff2"),
        url("../fonts/OpenSans-LightItalic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "OpenSans-semibold";
    src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"),
        url("../fonts/OpenSans-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "OpenSans-light";
    src: url("../fonts/OpenSans-Light.woff2") format("woff2"),
        url("../fonts/OpenSans-Light.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Font Awesome-regular";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../fonts/fa-regular-400.eot");
    src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),
        url("../fonts/fa-regular-400.woff2") format("woff2"),
        url("../fonts/fa-regular-400.woff") format("woff"),
        url("../fonts/fa-regular-400.ttf") format("truetype"),
        url("../fonts/fa-regular-400.svg#fontawesome") format("svg");
}
@font-face {
    font-family: "FontAwesome-Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../fonts/fa-brands-400.eot");
    src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),
        url("../fonts/fa-brands-400.woff2") format("woff2"),
        url("../fonts/fa-brands-400.woff") format("woff"),
        url("../fonts/fa-brands-400.ttf") format("truetype"),
        url("../fonts/fa-brands-400.svg#fontawesome") format("svg");
}
@font-face {
    font-family: "Font Awesome-solid";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../fonts/fa-solid-900.eot");
    src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),
        url("../fonts/fa-solid-900.woff2") format("woff2"),
        url("../fonts/fa-solid-900.woff") format("woff"),
        url("../fonts/fa-solid-900.ttf") format("truetype"),
        url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}
html {
    scroll-padding-top: 160px;
}

.far,
.fad {
    font-family: "Font Awesome-regular";
    font-weight: 400;
}

.fab {
    font-family: "FontAwesome-Brands";
}

.fal,
.fa,
.fas {
    font-family: "Font Awesome-solid";
}

.fal {
    font-weight: 300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: white;
    height: 100%;
}

body {
    font-family: "open sans", Helvetica;
    font-size: 16px;
    color: #202833;
    box-sizing: border-box;
    line-height: 1.4;
}

a {
    color: #c5c5c8;
    text-decoration: none;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: "OpenSans-bold";
}

h4 {
    font-size: 20px;
}

h3 {
    font-size: 24px;
}

h2 {
    font-size: 32px;
}

h1 {
    font-size: 60px;
    margin-bottom: 25px;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

b,
strong {
    font-weight: bolder;
    font-family: "OpenSans-bold";
}

hr {
    border: 1px solid #000;
    height: 1px;
}

input[type="submit"],
button {
    -webkit-appearance: none;
}

.btn-link {
    color: #202833;
}

.wrapper {
    width: 100%;
    margin: auto;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.ajax-loader {
    visibility: visible !important;
}

#ajax-loader {
    background: rgba(255, 255, 255, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    top: 0;
    left: 0;
}
#ajax-loader div {
    background: url("../images/ajax-loading.gif");
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: 300px;
    background-size: cover;
}

.container-90 {
    width: 90%;
}

.container {
    width: 80%;
    margin: auto;
    max-width: 1280px;
}

.container-65 {
    width: 65%;
    margin: auto;
}

.container-50 {
    width: 50%;
    max-width: 900px;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

.text-align-left {
    text-align: left;
}

.hide {
    display: none !important;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-auto {
    background-size: auto;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block !important;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-right {
    justify-content: right;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.align-self-end {
    align-self: end;
}

.align-self-flex-end {
    align-self: flex-end;
}

.align-self-start {
    align-self: flex-start;
}

.v-align-botm {
    vertical-align: bottom;
}

.align-self-center {
    align-self: center;
}

.float-right {
    float: right;
}

.redio-input-wrap {
    display: inline-block;
}

.check-box .check,
.redio-input-wrap .check {
    /*margin-top: 3px;*/
}
.check-box label,
.redio-input-wrap label {
    font-size: 14px;
    font-family: "OpenSans-light";
    cursor: pointer;
    width: calc(100% - 20px);
    line-height: 1.4;
}
.check-box label a,
.redio-input-wrap label a {
    color: #202833;
    text-decoration: underline;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}
.c-normal {
    cursor: auto !important;
}

.btn {
    padding: 12px 22px;
    min-width: 160px;
    display: inline-block;
    font-family: "OpenSans-semibold";
    color: white;
    background: transparent linear-gradient(270deg, #6a28d9 0%, #c35683 100%) 0%
        0% no-repeat padding-box;
    border-radius: 65px;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    border: 2px solid transparent;
    font-size: 14px;
    -webkit-appearance: none;
}

.btn-secondry,
.btn:hover {
    color: #6a28d9;
    background: #ffffff;
    border: 2px solid #6a28d9;
}

.btn-white,
.btn-white:hover {
    background: #ffffff;
    color: #c35683;
    border-color: #fff;
}

.btn-secondry.btn-white,
.btn-secondry.btn-white:hover {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}

.btn-small {
    padding: 4px 15px !important;
    min-width: auto !important;
    color: #6a28d9;
    font-size: 12px !important;
    text-transform: uppercase;
}

.btn-cancel {
    border: 2px solid black;
    color: black;
}

.btn-light {
    background: #fad0df;
    /*display: flex;
  justify-content: center;
  align-items: center;*/
}

.btn-light:hover {
    background: #fad0df;
    border-color: #fad0df;
}

.btn-group {
    display: flex;
    align-self: flex-end;
}

.no-hover {
    cursor: auto;
}

.heading-indicator-wrap {
    color: #c5c5c8;
}

.round {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin: 7px;
}

.ht {
    height: 100%;
}

.pd-10 {
    padding: 10px;
}

.pd-5-10 {
    padding: 5px 10px;
}

.pd-20 {
    padding: 20px;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-20 {
    padding-right: 20px !important;
}
.pr-30 {
	padding-right: 30px;
}
.pr-50 {
	padding-right: 30px;
}
.pl-50 {
	padding-left: 50px;
}

.pl-18 {
    padding-left: 18px;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-30 {
    padding-left: 30px;
}

.pl-220 {
    padding-left: 220px !important;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-57 {
    padding-top: 57px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-44 {
    padding-top: 44px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-25 {
    padding-top: 25px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-123 {
    padding-top: 123px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-236 {
    padding-top: 236px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-150 {
    padding-top: 150px !important;
}

.pt-200 {
    padding-top: 200px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-150 {
    padding-left: 150px !important;
}

.pl-170 {
    padding-left: 170px !important;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-500 {
    padding-bottom: 500px;
}

.pb-200 {
    padding-bottom: 200px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-28 {
    padding-bottom: 28px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-88 {
    padding-top: 88px;
}

.mg-10 {
    margin: 10px;
}

.mg-20 {
    margin: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-28 {
    margin-top: 28px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-55 {
    margin-top: 55px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px !important;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-200 {
    margin-top: 200px !important;
}

.mt-160 {
    margin-top: 160px;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-200 {
    padding-bottom: 200px;
}

.pl-20 {
    padding-left: 20px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-100 {
    margin-left: 100px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-auto {
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.font-20 {
    font-size: 20px;
}

.font-18 {
    font-size: 18px;
}

.font-16 {
    font-size: 16px !important;
}

.m-auto {
    margin: auto;
}

.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.mg-5 {
    margin: 5px;
}

.underline {
    text-decoration: underline;
}

.black {
    color: #2c2b30 !important;
}

.white {
    color: white !important;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.border-bottom {
    border-bottom: 1px solid #efefef;
}

.border-top {
    border-top: 1px solid #e2e2e3;
}

.top {
    top: 0;
}

.bt-0 {
    bottom: 0;
}

.bt-20 {
    bottom: 20px;
}

.table {
    display: table;
}

.bg-pink {
    background-color: #6a28d9 !important;
}

.bg-black {
    background-color: black !important;
}

.bg-lightgreen {
    background-color: #f4f4f4;
}

.bg-green {
    background-color: #7bbf3a;
    color: #fff;
}

.bg-light-gary {
    background: #eeeeee;
    padding: 5px 28px;
    font-size: 13px;
}

.bg-light-gary2 {
    background: #f7f7f7;
}

.bg-info {
    background-color: #e16573;
}

.bg-gradient {
    /*background: transparent linear-gradient(91deg, #E51560 0%, #9B1357 100%, #000000 100%) 0% 0% no-repeat padding-box;*/
    /*background: url("../images/bg-gradient.jpg") center center no-repeat;*/
    background: url("../images/bg-gradiant_page_module.png") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
}

.light-purple {
    background-color: #c7368b;
}

.dark-purple {
    background-color: #4b267e;
}

.bread-crumb .active {
    color: #6a28d9 !important;
    font-family: "OpenSans-bold";
}

.active > a {
    color: #6a28d9 !important;
    font-family: "OpenSans-bold";
}

.bold {
    font-family: "OpenSans-bold" !important;
}

.font-s {
    font-size: 14px;
}

.font-italic {
    font-family: "OpenSans-lightitalic";
}

.no-bold {
    font-family: "Open Sans";
}

.font-light {
    font-family: "OpenSans-light";
}

.color-pink {
    color: #6a28d9;
}
.color-pink a {
    color: #6a28d9;
}

.color-white {
    color: #ffffff;
}

.color-red {
    color: #9b1357;
}

.text-center {
    text-align: center;
}

input:focus {
    outline: none !important;
}

.right-0 {
    right: 0;
}

.hidden {
    overflow: hidden;
}

.w-100 {
    width: 100% !important;
}

.w-85 {
    width: 85% !important;
}

.w-75 {
    width: 75%;
}

.w-70 {
    width: 70%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.ht-100 {
    height: 100%;
}

.ht-70 {
    min-height: 70px;
}

.ht-1 {
    height: 1px;
}

.flex-column {
    flex-direction: column;
}

.flex-direction-reverse {
    flex-direction: row-reverse;
}

.flex-row-wrap {
    flex-flow: row wrap;
}

.big-font-22,
.font-22 {
    font-size: 22px;
}

.font-23 {
    font-size: 23px;
}

.big-font-26 {
    font-size: 26px;
}

.right-15 {
    right: 15px;
}

.row-no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.parsley-errors-list li {
    color: #6a28d9;
    font-size: 10px;
    padding-left: 0;
}

.row {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
    flex-wrap: wrap;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row-smgutter {
    margin-left: -10px;
    margin-right: -10px;
}

.row-smgutter > * {
    padding-left: 10px;
    padding-right: 10px;
}

.row-biggutter {
    margin-left: -30px;
    margin-right: -30px;
}

.row-biggutter > div[class^="col"] {
    padding-left: 30px;
    padding-right: 30px;
}

/* bootstrap cols */
.col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

/* bootstrap cols END */
.row-cols-4 {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-3 > * {
    flex: 0 0 auto !important;
    width: 33.33% !important;
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.note {
    font-size: 12px;
}

.equal-hieght-img {
    background-image: url("../images/meeting-event.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.black-arrow select {
    -webkit-appearance: none;
    background-image: url("../images/arrow-down-black.svg");
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: right 15px center;
    /*color: gray;*/
}

.d-none {
    display: none;
}

label {
    font-size: 14px;
    font-family: "OpenSans-bold";
}

.redio-input-wrap label {
    font-family: "OpenSans-light";
}

.ms-options label {
    font-family: "OpenSans-light";
}

input[type="text"].readOnly-bg:disabled,
select.readOnly-bg:disabled {
    background-color: #eeeeee;
}
input[type="text"].readOnly-bg:read-only,
select.readOnly-bg:read-only {
    background-color: #eeeeee;
}

input[type="text"],
select,
input[type="search"],
input[type="password"],
input[type="email"],
textarea {
    width: 100%;
    height: 50px;
    display: inline-block;
    border: 1px solid #c5c5c8;
    box-sizing: border-box;
    padding: 10px;
    font-family: "Open Sans";
    color: #202833;
    background-color: #fff;
    font-size: 16px;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0px;
}

textarea {
    height: auto;
}

input[type="file"] {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.growing-field {
    display: block;
    overflow: hidden;
    resize: none;
}
.growing-field:focus {
    outline: none !important;
}

.file {
    height: 50px;
    display: block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: "Open Sans";
    color: #202833;
}

.check {
    height: 20px;
    width: 20px;
    border: 1px solid #c5c5c8;
    -webkit-appearance: none;
    background: transparent;
}
.check:checked {
    background-image: url("../images/checkbox-checked-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px;
}

input[type="radio"] {
    appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 2px;
    background-clip: content-box;
    border: 2px solid #c5c5c8;
    border-radius: 50%;
    position: relative;
    top: 4px;
}

input[type="radio"]:checked {
    background-color: #6a28d9;
}

.forgotpassword {
    font-family: "open sans";
    font-size: 14px;
}

.btn-date-wrap {
    bottom: 15px;
}

.company-wrap {
    bottom: 15px;
}
.company-wrap .company-name {
    font-size: 23px;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.owl-item.active {
    font-family: "Open Sans";
    color: #202833;
}

.figure-facts,
.deal-facts,
.contact-deatils {
    color: #202833;
    font-family: "OpenSans-semibold";
    line-height: 1.3;
    font-size: 16px;
}
.figure-facts p,
.deal-facts p,
.contact-deatils p {
    margin-bottom: 5px;
}
.figure-facts span,
.deal-facts span,
.contact-deatils span {
    font-family: "OpenSans-light";
    color: #777c83;
    font-size: 14px;
}
.figure-facts a,
.deal-facts a,
.contact-deatils a {
    color: black;
    text-decoration: underline;
}
.figure-facts hr,
.deal-facts hr,
.contact-deatils hr {
    margin-top: 40px;
    margin-bottom: 40px;
}
.figure-facts .workspace span.bold,
.deal-facts .workspace span.bold,
.contact-deatils .workspace span.bold {
    font-family: "OpenSans-bold";
}
.figure-facts .workspace span.color-pink,
.deal-facts .workspace span.color-pink,
.contact-deatils .workspace span.color-pink {
    color: #6a28d9;
}

.facts-outer .reverse-col-odd:nth-child(odd) {
    flex-direction: row-reverse;
}
.facts-outer .reverse-col-odd:nth-child(even) .img-block {
    text-align: right;
}
.facts-outer .reverse-col-even:nth-child(even) {
    flex-direction: row-reverse;
}
.facts-outer .reverse-col-even:nth-child(odd) .img-block {
    text-align: right;
}

.fact-content {
    background: url("../images/icon-plus.png") left top no-repeat;
    background-size: 45px auto;
    padding-left: 65px;
}
.fact-content .border {
    border-left: 2px solid #6a28d9;
    padding-left: 20px;
}
.fact-content p {
    line-height: 1.4;
}
.fact-content.cont-with-count {
    background: none;
    position: relative;
    padding-left: 0;
}
.fact-content.cont-with-count span {
    font-size: 50px;
    line-height: 0.9;
    position: absolute;
    top: -5px;
    left: 0;
    color: #6a28d9;
    font-family: "OpenSans-bold";
}

.font-size-60 {
    font-size: 60px;
}

.font-size-40 {
    font-size: 40px;
}

.figure-facts-border {
    border-bottom: 1px solid #efefef;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.date {
    color: #c5c5c8;
    font-size: 14px;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    margin-top: 15px;
}

.valid-feedback {
    color: #fff;
}

.down-arrow {
    cursor: pointer;
}

#header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: white;
    /*height: 132px;*/
    height: 135px;
    -webkit-box-shadow: 0px 1px 8px 0px black;
    -moz-box-shadow: 0px 1px 8px 0px black;
    box-shadow: 0px 1px 8px 0px black;
}

.header {
    padding-top: 25px;
    padding-bottom: 25px;
    /*line-height: 0.4;*/
}
.header .notifications {
    background-color: #6a28d9;
    color: #ffffff;
    line-height: 1;
    margin-top: -25px;
    line-height: 0.9;
}
.header a:hover {
    color: #6a28d9;
}
.header .lang-menu {
    font-size: 14px;
}
.header .lang-menu:after {
    content: "";
    display: table;
    clear: both;
}
.header .lang-menu li {
    padding-left: 0 !important;
    font-size: 14px !important;
}
.header .lang-menu li:not(:first-child)::before {
    content: "|";
    color: #e0e0e2;
    padding-left: 5px;
    padding-right: 1.4px;
}
.header .lang-menu li a {
    color: #c5c5c8;
}
.header .lang-menu li a:hover {
    color: #6a28d9;
}
.header .lang-menu li.active:not(:first-child)::before {
    color: #6a28d9;
}
.header .logo {
    width: 248px;
    margin-top: -15px;
}
.header .logo img {
    display: block;
}
.header .login-menu {
    margin-left: 50px;
    margin-top: 15px;
}
.header .loginpage {
    position: absolute;
    padding: 25px 25px 25px 25px;
    width: 269px;
    border-top: 3px solid #6a28d9;
    box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 10px 0 rgba(0, 0, 0, 0.19);
    display: none;
    text-align: right;
    right: 0;
    background: white;
    z-index: 10;
    top: calc(100% + 15px);
}
.header .loginpage span {
    color: #6a28d9;
}
.header .loginpage ul li {
    padding: 0;
}
.header .loginpage hr {
    border: 1px solid #777c83;
    margin-top: 5px;
    margin-bottom: 5px;
}
.header .loginpage .login-state {
    line-height: 1.4;
}
.header .loginpage .login-state a {
    color: #202833;
    word-wrap: break-word;
}
.header .loginpage .login-state ul li {
    font-size: 15px;
}
.header .loginpage .login-state ul li button {
    font-size: 15px;
    color: #202833;
}
.header .loginpage .login-state ul li span {
    font-weight: bold;
}
.header .loginpage .login-state ul li span.big-font {
    font-size: 24px;
}
.header .loginpage .login-state ul li:not(:first-child):not(:last-child):after {
    content: "";
    display: inline-block;
    width: 100%;
    border-top: 1px solid #e2e2e3;
    margin-bottom: 6px;
}
.header .login-option {
    /*padding: 13px 75px;
    color: white;
    &:hover {
      color: white;
    } */
}
.header .sign-up-option {
    margin-top: 30px;
    /*padding: 10px 68px;*/
    color: #6a28d9;
}
.header .usericon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: -5px;
}
.header .usericon:hover path {
    stroke: #6a28d9;
}
.header .usericon.active path {
    stroke: #6a28d9;
}
.header .usericon.usericonclick path {
    stroke: #6a28d9;
}
.header .usericon svg {
    width: 30px;
    height: 30px;
    margin: auto;
    display: block;
}
.header .menu:after {
    content: "";
    display: table;
    clear: both;
}
.header .menu ul.navbar-nav li {
    padding-left: 40px;
    position: relative;
    font-size: 18px;
}
.header .menu ul.navbar-nav li:hover .login-page {
    display: block;
}
.header .menu ul.navbar-nav li a {
    color: #c5c5c8;
}
.header .menu ul.navbar-nav li a:hover {
    color: #6a28d9;
}
.header .menu .block {
    display: block;
}

.card-heading {
    word-wrap: break-word;
}

.related-thoughts .owl-item {
    float: none;
}
.related-thoughts .owl-stage {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.content-area {
    padding-top: 135px;
}
.content-area.pt-40 {
    padding-top: 40px;
}
.content-area .owl-item {
    margin-bottom: 50px;
    /*float: none;*/
}
.content-area .owl-stage {
    height: 100%;
    /*display: flex;*/
}
.content-area .card {
    height: 100%;
}
.content-area .home-banner-bg {
    width: 100%;
    height: 100%;
    background-image: url("../images/home-banner.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    color: #ffffff;
}
.content-area .background-img {
    position: relative;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.content-area .downloadapp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: linear-gradient(#c3568c, #8837bf);
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 20px;
    padding-top: 20px;
    padding-top: 30px;
    line-height: 1;
    margin-top: 50px;
}
.content-area .downloadapp:after {
    content: "";
    display: table;
    clear: both;
}
.content-area .downloadapp a {
    color: white;
}
.content-area .downloadapp p {
    margin-bottom: 0;
}
.content-area .downloadapp .icons {
    text-align: center;
    margin: auto;
}
.content-area .downloadapp .icons a {
    height: 28px;
}
.content-area .downloadapp .icons a:not(:last-child) {
    border-right: 1px solid white;
    padding-right: 10px;
    padding-right: 18px;
}
.content-area .downloadapp .icons a img {
    height: 28px;
}
.content-area .banner-heading {
    max-width: 950px;
}
.content-area .banner-heading h1 {
    /*color: #202833;*/
    color: #ffffff;
    font-family: "OpenSans-bold";
}
.content-area .banner-heading .banner-teaser {
    max-width: 522px;
    margin: auto;
    line-height: 1.3;
    margin-bottom: 30px;
}
.content-area .blend-color {
    color: #000;
}
.content-area .heading h2 {
    font-weight: normal;
    font-size: 32px;
    /*
      &:before {
        content: "";
        color: #6A28D9;
        width: 80px;
        text-align: center;
        margin: auto;

        height: 5px;
        background: #6A28D9;
        border: none;
        margin-bottom: 20px;
        display: block;
      }
      */
}
.content-area .heading h2 span {
    /*display:block;*/
}
.content-area .add-image {
    width: 300px;
    position: absolute;
    bottom: -55px;
    right: 0;
}
.content-area .display-all {
    font-size: 24px;
}
.content-area .display-all .fa {
    padding-top: 6px;
    font-size: 20px;
    margin-right: 30px;
    display: inline-block;
    text-align: center;
}
.content-area .display-all .fa.fa-plus.round {
    border-radius: 50%;
    margin: 0.15em;
    margin-right: 0.15em;
    color: white;
    background-image: linear-gradient(#d61c60, #a11858);
    height: 30px;
    width: 30px;
}
.content-area .owl-carousel .owl-dots span {
    text-align: center;
    z-index: 1;
    position: relative;
    margin-top: 13px;
}
.content-area .owl-carousel .owl-dots button.owl-dot span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background-color: #6a28d9;
    margin: 0 5px;
}
.content-area .owl-carousel .owl-dots button.owl-dot.active span {
    background: #8837bf;
}
.content-area .owl-carousel .owl-dots button.owl-dot:focus {
    outline: none;
}
.content-area .owl-carousel .owl-prev:hover {
    background: none;
}
.content-area .owl-carousel .owl-next:hover {
    background: none;
}
.content-area .owl-carousel .col {
    height: 100%;
}
.content-area .corve-bg {
    background-image: url("../images/corvebg.png");
    background-repeat: no-repeat;
    width: 100%;
    background-position: center 100px;
    background-size: 100% 100%;
}
.content-area .corve-bg-opposite {
    background-image: url("../images/curvebg-op.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-position: top center;
    background-size: 100% 100%;
}
.content-area .corve-bg-opposite h2 {
    font-size: 40px;
}
.content-area .opportunites-details-card {
    margin-bottom: 15px;
}
.content-area .opportunites-details-card .card-heading {
    min-height: 111px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
}
.content-area .opportunites-details-card .card-footer {
    position: absolute;
    right: 31px;
    bottom: -38px;
    padding: 13px;
    text-align: center;
    border-radius: 20px;
}
.content-area .investment_oppurtunties .owl-prev {
    background-image: url("../images/arrow-left.svg") !important;
    width: 25px;
    display: block;
    height: 40px;
    background-repeat: no-repeat !important;
    position: absolute;
    left: -45px;
    top: 170px;
    font-size: 100px !important;
}
.content-area .investment_oppurtunties .owl-prev span {
    display: none;
}
.content-area .investment_oppurtunties .owl-next {
    background-image: url("../images/arrow-right.svg") !important;
    width: 25px;
    display: block;
    height: 40px;
    background-repeat: no-repeat !important;
    position: absolute;
    right: -40px;
    top: 170px;
    background-position: right center;
}
.content-area .investment_oppurtunties .owl-next span {
    display: none;
}
.content-area .text-slider .slider-content {
    padding-left: 25%;
    padding-right: 25%;
    margin: 56px auto;
    font-family: "OpenSans-lightitalic";
    font-size: 35px;
    color: white;
    position: relative;
}
.content-area .text-slider .slider-content p {
    font-size: 60px;
}
.content-area .text-slider .slider-content p:before {
    content: "";
    background-image: url("../images/left-quotes.svg");
    position: absolute;
    top: -17px;
    left: 100px;
    width: 145px;
    height: 120px;
    background-repeat: no-repeat;
    background-size: contain;
}
.content-area .text-slider .slider-content p:after {
    content: "";
    background-image: url("../images/right-quotes.svg");
    position: absolute;
    right: 100px;
    width: 185px;
    height: 122px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    background-position: right center;
}
.content-area .company-name-big {
    font-size: 30px !important;
}
.content-area .thoughts {
    color: white;
}
.content-area .full-width.owl-carousel.row {
    margin-left: 0;
    margin-right: 0;
}
.content-area .full-width.owl-carousel.row > * {
    padding-left: 0;
    padding-right: 0;
}
.content-area .full-width .heading {
    color: white;
}
.content-area .full-width .card {
    padding: 25px;
    border-radius: 30px;
}
.content-area .full-width .card .card-top {
    color: black;
}
.content-area .full-width .card .card-top span {
    font-family: "OpenSans-bold";
    padding-left: 20px;
}
.content-area .full-width .card .card-heading {
    color: #6a28d9;
    padding-top: 20px;
}
.content-area .full-width .card .card-heading h3 {
    font-size: 16px;
}
.content-area .full-width .card .card-body {
    padding: 20px 0 10px 0;
}
.content-area .full-width .card .card-body h1 {
    font-family: "OpenSans-lightitalic";
    color: #303842;
}
.content-area .full-width .card .card-body .card-img {
    /*padding-right: 20px;*/
}
.content-area .full-width .card .card-body .card-img img {
    max-height: 300px;
    width: auto;
    height: auto;
}
.content-area .heading h2 {
    font-weight: normal;
}
.content-area .img-group {
    width: 100%;
    padding-top: 20px;
	padding-bottom: 20px;
}
.content-area .img-group .img-item {
    /*margin-bottom: 65px;*/
    padding: 0px 10px;
}

.img-group-slider .owl-stage {
    display: flex;
    align-items: center;
}
.img-group-slider .owl-item {
    margin-bottom: 0;
    float: none;
}
.img-group-slider .owl-item img {
    width: auto;
    max-width: 150px;
    margin: auto;
}

.see-more,
.see-more-noajax,
.see-more-company,
.see-more-prof,
.see-more-wiw,
.see-more-investor{
    color: #202833;
    font-size: 24px;
    display: inline-block;
}
.see-more:before,
.see-more-noajax:before,
.see-more-company:before,
.see-more-prof:before,
.see-more-wiw:before,
.see-more-investor:before{
    content: "";
    background: url("../images/more-icon-plus.svg");
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px;
}

.circle {
    border-radius: 50%;
    background-color: #5c5c5c;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    background-color: #0b0c0f;
    color: #ccc;
    margin-top: auto;
}
.footer .col-right ul {
    padding-top: 10px;
}
.footer .col-right ul li {
    padding-left: 55px;
}
.footer .col-right ul li a {
    color: #ccc;
}
.footer .col-right .download-apps a {
    margin-left: 15px;
    margin-right: 15px;
}
.footer .col-right .download-apps img {
    width: 225px;
}
.footer .footer-logo {
    width: 200px;
    height: 65px;
}
.footer .social-icons {
    justify-content: left;
    align-items: center;
    font-size: 13px;
	text-transform: uppercase;
}
.footer .social-icons .fa {
    margin-left: 30px;
}
.footer .social-icons .fa-facebook {
    color: #5c5c5c;
    font-size: 40px;
    padding-left: 20px;
}
.footer .social-icons .fa-instagram {
    color: #5c5c5c;
    font-size: 40px;
    padding-left: 35px;
}
.footer .social-icons .fa-linkedin {
    color: #5c5c5c;
    font-size: 40px;
    padding-left: 15px;
}
.footer .footer-bottom {
    background-color: #8837bf;
    text-align: center;
    color: white;
    font-size: 10px;
}

.newsletter input[type="email"] {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #000000;
    background-color: transparent;
}
.newsletter input[type="email"]::placeholder {
    color: #2c2b30;
    font-family: "OpenSans-light";
}

.notification,
.link-copied {
    position: fixed;
    right: 0;
    top: 122px;
    font-family: "OpenSans-semibold";
    max-width: 500px;
    z-index: 999;
    line-height: 1.5;
}
.notification .close,
.link-copied .close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    padding: 2px;
    cursor: pointer;
}
.notification .close svg,
.link-copied .close svg {
    display: block;
}

.error-msg {
    background-color: #ff7459;
    padding: 25px;
    color: #fff;
}

.success-msg {
    background-color: #6a28d9;
    padding: 24px 50px;
    z-index: 999;
}
.success-msg img {
    position: absolute;
    top: 5px;
    right: 0;
    width: 20px;
    padding: 5px;
}

form .input-field {
    height: 50px;
    background: white;
    width: 100%;
    -webkit-appearance: none;
    border: 1px solid #c5c5c8;
    padding: 6px 15px;
    color: #202833;
    font-size: 16px;
}
form .field-checkbox-wrap {
    font-size: 14px;
    font-family: "OpenSans-light";
}
form .field-psw-wrap {
    font-size: 14px;
}
form .check {
    height: 20px;
    width: 20px;
    border: 1px solid #c5c5c8;
    -webkit-appearance: none;
    background: transparent;
}
form .check:checked {
    background-image: url("../images/checkbox-checked-icon.svg");
}
form .password {
    position: relative;
}
form .password .toggle-psw {
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    background-image: url("../images/password-icon-hide.svg");
    background-repeat: no-repeat;
    background-position: center center;
    top: 50%;
    margin-top: -10px;
    cursor: pointer;
}
form .password .eye {
    background-image: url("../images/password-icon-show.svg");
    position: absolute;
}
form .error {
    border: 1px solid #6a28d9;
    color: #6a28d9;
    font-family: "OpenSans-Bold";
    font-size: 15px;
}
form .error::placeholder {
    color: #6a28d9;
}
form .error-text {
    font-size: 12px;
    color: #6a28d9;
}

.full-bg-gradient {
    color: white;
    background-image: linear-gradient(#202833, #8837bf);
    min-height: 100%;
}
.full-bg-gradient form .check {
    border-color: #fff;
}

.login-page .container {
    padding-bottom: 150px;
}
.login-page .overlay {
    background-image: url("../images/men.png");
    width: 250px;
    background-repeat: no-repeat;
    height: 250px;
    z-index: 10;
    right: calc(40% - 670px / 2);
    bottom: 0;
    position: absolute;
    background-size: contain;
}
.login-page form {
    /*max-width: 420px;*/
    margin: auto;
}
.login-page .parsley-errors-list li {
    color: #ff7459;
    padding-left: 20px;
}
.login-page .sign-up .input-field {
    padding-left: 30px;
}
.login-page .sign-up .parsley-errors-list li {
    padding-left: 30px;
}
.login-page .sign-up .checkbox-outer .parsley-errors-list li {
    margin-bottom: 20px;
    margin-top: -15px;
}
.login-page .max-420 {
    max-width: 420px;
    margin: auto;
}
.login-page .logo {
    width: 315px;
    margin: auto;
}
.login-page h2 {
    font-size: 42px;
    margin-bottom: 10px;
}
.login-page p {
    font-size: 20px;
}
.login-page a {
    text-decoration: underline;
    color: white;
}
.login-page .check-box label a {
    color: #fff;
}
.login-page .submit {
    border: 2px solid white;
    background: transparent;
    margin-left: auto;
    margin-right: auto;
}
.login-page .submit:hover {
    background: #ffffff;
}
.login-page .check:checked {
    background-image: url("../images/checkbox-checked-icon-white.svg");
}

.industry-details {
    border-bottom: 1px solid #efefef;
}

.banner {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 2000px rgba(8, 8, 8, 0.2);
    background-color: #9e409f;
}
.banner .content-wrap {
	width: 80%;
	max-width: 800px;
}
.banner.banner-ht-400 {
    height: 400px;
}
.banner .social-icons {
    color: #fff;
	position: absolute;
	right: 2%;
	bottom: 20px;
}
.banner .social-icons .fa-linkedin {
  font-size: 30px;
  padding-left: 15px;
  color: #fff;
}
.banner .signup .btn {
    font-family: "OpenSans-bold";
}
.banner .signup ul li:not(:last-child) .btn {
	margin-right: 15px;
}
.banner .signup .trial-period-text {
    line-height: 1.2;
}
.banner .signup .trial-period-text span {
    display: block;
    font-family: "OpenSans-bold";
}
.banner h1.font-light {
    font-family: "OpenSans-light";
}
.banner h1 span {
    font-family: "OpenSans-bold";
}
.banner.banner-with-video {
    height: 600px;
    overflow: hidden;
    position: relative;
}
.banner.banner-with-video video {
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.banner-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.banner-content h1 {
    line-height: 1.12;
	margin-bottom: 15px;
}
.banner .item-wrap:not(:first-child) {
	border-top: 1px solid #fff;
}
.bread-crumb {
    font-size: 14px;
    font-family: "OpenSans-light";
}
.bread-crumb li:not(:first-child)::before {
    content: "|";
    color: currentColor;
    padding-left: 5px;
    padding-right: 5px;
}
.bread-crumb li a {
    color: #202833;
}
.bread-crumb li a:hover {
    color: #6a28d9;
}

.content-wrap {
    color: white;
    overflow: hidden;
    width: 100%;
}

.content-wrap h1 {
    /*display: inline-block;*/
}

.banner-text {
    line-height: 1.6;
}

.droom-ranking {
    max-width: 730px;
    margin: auto;
    position: relative;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
}
.droom-ranking table {
    border-collapse: collapse;
}
.droom-ranking .owl-prev,
.droom-ranking .owl-next {
    width: 30px;
    height: 35px;
    position: absolute;
    top: 10px;
    background-repeat: no-repeat !important;
    background-size: 15px 15px !important;
    margin: 0 !important;
}
.droom-ranking .owl-prev {
    background-image: url("../images/left-arrow-gray.svg") !important;
    background-position: left center !important;
    left: 0;
}
.droom-ranking .owl-prev span {
    display: none;
}
.droom-ranking .owl-next {
    background-image: url("../images/right-arrow-gray.svg") !important;
    background-position: right center !important;
    right: 0;
}
.droom-ranking .owl-next span {
    display: none;
}
.droom-ranking .ranking-name {
    font-size: 20px;
}
.droom-ranking td {
    padding-top: 5px;
    padding-bottom: 5px;
}
.droom-ranking hr {
    margin-top: 20px;
    margin-bottom: 20px;
}
.droom-ranking .down-arrow {
    font-family: "OpenSans-bold";
    font-size: 25px;
    line-height: 1;
    border-bottom: 1px solid #c5c5c8;
    padding-bottom: 20px;
    padding-right: 30px;
    cursor: pointer;
}
.droom-ranking .down-arrow .arrow-click {
    background-image: url("../images/arrow-down.svg");
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
    cursor: pointer;
    top: 12px;
}
.droom-ranking .down-arrow.clicked .arrow-click {
    background-image: url("../images/arrow-up.svg");
}
.droom-ranking a {
    color: black;
}
.droom-ranking .ranking-content {
    display: none;
}
.droom-ranking .ranking-content span {
    font-size: 20px;
}

.menu-search {
    width: 68%;
    margin: auto;
}
.menu-search .select-wrap {
    width: 100%;
}
.menu-search .ms-options-wrap button,
.menu-search .pick-date > button {
    font-family: "OpenSans-light";
    font-size: 16px;
    color: #202833;
    padding-right: 25px;
    text-align: center;
}
.menu-search form .investment {
    display: flex;
    border: 1px solid #c5c5c8;
    align-items: center;
    border-radius: 15px;
    width: 100%;
}
.menu-search form .investment .icon-flied-wrap {
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
}
.menu-search form .investment .icon-flied-wrap svg,
.menu-search form .investment .icon-flied-wrap img {
    width: 18px;
    position: absolute;
    z-index: 99;
}
.menu-search form .investment .icon-flied-wrap:not(:last-child)::after {
    content: "";
    color: #e0e0e2;
    height: 30px;
    display: inline-block;
    border-right: 1px solid #c5c5c8;
    position: absolute;
    right: 0;
}
.menu-search form .investment select {
    -webkit-appearance: none;
    background-image: url("../images/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: right 15px center;
    border: none;
    font-family: "OpenSans-light";
    width: 100%;
    cursor: pointer;
    text-align: center;
    background-color: transparent;
}
.menu-search form .investment select.rotate {
    background-image: url("../images/arrow-up.svg");
}
.menu-search form .investment input {
    padding-left: 30px;
}
.menu-search form input[type="text"] {
    border: none;
    height: 40px;
    width: 100%;
    font-family: "OpenSans-light";
    font-size: 16px;
    background-color: transparent;
}
.menu-search form input[type="text"]::placeholder {
    color: #4d535c;
}
.menu-search form input[type="text"]:clicked {
    border: none;
    -webkit-appearance: none;
}
.menu-search form .save-criteria {
    font-family: "OpenSans-light";
    font-size: 14px;
}
.menu-search form .check-save {
    -webkit-appearance: none;
    border: 1px solid #c5c5c8;
    height: 20px;
    width: 20px;
}
.menu-search form .check-save:checked {
    background-image: url("../images/checkbox-checked-icon.svg");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center center;
}
.menu-search form .search-btn {
    /*
    padding: 15px 20px;
    min-width: 180px;
    font-size: 16px;
    line-height: 1;
    */
}

.search-item-group input[type="text"] {
    border: none;
    background: none;
}
.search-item-group a {
    color: black;
    text-decoration: underline;
    font-size: 12px;
    color: #474d57;
}

.form-select-box {
    display: flex;
}
.form-select-box input[type="text"] {
    font-family: "OpenSans-light";
    color: #202833;
}
.form-select-box .pick-date > button {
    font-family: "OpenSans-light";
    font-size: 16px;
    color: #202833;
    padding-right: 25px;
    text-align: center;
}

#statisticsForm .icon-flied-wrap {
    border: 1px solid #c5c5c8;
    border-radius: 20px;
}
#statisticsForm .pick-date {
    min-width: 200px;
}

select {
    background-image: url("../images/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: 11px auto;
    background-position: right 15px center;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    padding-right: 35px;
}

form .opportunites span {
    font-size: 16px;
}
form .opportunites select {
    width: auto;
    background-color: transparent;
    border: none;
    color: #6a28d9;
    text-align: center;
}

.three-col {
    width: 33.33%;
}

.share-icon a {
    background: #c5c5c8;
    padding: 1px 10px;
}
.share-icon a:hover {
    background: #6a28d9;
}
.share-icon i {
    color: white;
}

.col-66 {
    width: 66%;
}
.col-66 h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.col-25 {
    width: 25%;
}

.col-34 {
    width: 34%;
}
.col-34 hr {
    margin-left: auto;
}

.bookmark-icon {
    width: 21px;
    right: 0;
}

hr {
    border: none;
    background: #efefef;
}

.deal-room-detail-with-logo .heading h2 {
    font-size: 27px;
}
.deal-room-detail-with-logo .share-alt {
    margin-right: 10px;
}
.deal-room-detail-with-logo .red-bg-whtsapp {
    padding: 5px 10px;
    background: #ff7459;
}
.deal-room-detail-with-logo .company-logo {
    width: 550px;
    max-width: 100%;
}
.deal-room-detail-with-logo .company-logo img {
    max-height: 200px;
}
.deal-room-detail-with-logo .date {
    right: 0;
}
.deal-room-detail-with-logo .share-icons-group {
    right: 0;
}
.deal-room-detail-with-logo .industry-details {
    color: gray;
    border-bottom: 1px solid #efefef;
    padding-bottom: 50px;
}
.deal-room-detail-with-logo .process-document-card {
    border-bottom: 1px solid #efefef;
}
.deal-room-detail-with-logo .process-document-card .card-img {
    width: 48%;
}
.deal-room-detail-with-logo .process-document-card .card-body {
    width: 50%;
    padding-left: 30px;
}
.deal-room-detail-with-logo .company-name h1 {
    font-size: 30px;
    margin-bottom: 30px !important;
}

.process-document .col1,
.document-wrap .col1 {
    width: 40px;
}
.process-document .col2,
.document-wrap .col2 {
    width: calc(100% - 90px);
}

.curve-top-bg {
    background-image: url("../images/cor");
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    background-position: top center;
    padding-bottom: 300px;
}

.deal-room-detail-no-logo .company-name {
    font-size: 60px;
}

.warning-msg {
    padding: 16px 71px;
    background-color: #202833;
    font-size: 14px;
    text-align: center;
    position: fixed;
    right: 0;
    top: 165px;
}

.who-is-who-person .share-icons-group,
.who-is-who-company .share-icons-group {
    display: none;
}

.website a {
    color: #202833;
}

.share-option {
    background-image: url("../images/share.svg");
    background-image: url("../images/share.svg");
    background-repeat: no-repeat;
    background-position: right center;
}
.share-option a,
.share-option span {
    text-decoration: underline;
    color: black;
    cursor: pointer;
    font-size: 14px;
}
.share-option span {
    padding-right: 20px;
}

.redio-box-wrap {
    position: relative;
}

.button-group input[type="radio"] {
    border: 1px solid #c5c5c8;
    border-radius: 65px;
    position: absolute;
    left: 10px;
    top: 10px;
    min-width: 150px;
    max-width: 200px;
    padding: 2px 0;
    opacity: 0;
    cursor: pointer;
    height: 27px;
}
.button-group label {
    font-size: 12px;
    display: inline-block;
    background: transparent;
    color: #c5c5c8;
    border: 1px solid #c5c5c8;
    min-width: 150px;
    max-width: 200px;
    border-radius: 65px;
    margin: 10px;
    padding: 2px 0;
    font-family: "OpenSans-semibold";
}
.button-group input:checked + label {
    color: black;
    border: 1px solid black;
    min-width: 150px;
    max-width: 200px;
    border-radius: 65px;
    margin: 10px;
}

.transparent-btn {
    background: transparent;
    color: #c5c5c8;
    border: 1px solid #c5c5c8;
    min-width: 150px;
    max-width: 200px;
    margin: 10px;
}

.btn-active {
    color: #202833;
    border: 1px solid #202833;
}

.whoiswho-professional-list .user-profile-img {
    height: 150px;
}
.whoiswho-professional-list .user-profile-img img {
    max-height: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.whoiswho-professional-list .user-profile-details {
    line-height: 1.4;
    min-height: 105px;
}

.whoiswho-company-list .column-heading {
    /*min-width: 250px;*/
}
.whoiswho-company-list .column-heading .company-logo {
    height: 150px;
}
.whoiswho-company-list .column-heading .company-logo img {
    max-height: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.whoiswho-company-list .company-name {
    font-size: 22px;
    line-height: 1.4;
}

.who-is-who .menu-search form {
    max-width: 1200px;
}
.who-is-who .menu-search form .icon-flied-wrap {
    width: 33%;
}
.who-is-who h1 {
    font-family: "OpenSans-light";
}
.who-is-who .events-list h2 {
    font-size: 30px;
}
.who-is-who .events-list form {
    max-width: 720px;
}
.who-is-who .events-list .icon-flied-wrap {
    width: 50% !important;
}

.who-is-who-company h1 {
    font-size: 40px;
}

.professional-details-heading-wrap .row:not(:last-child) {
    border-bottom: 1px solid #e2e2e3;
}
.professional-details-heading-wrap .row h3 {
    font-size: 30px;
}

.col-30 {
    width: 30%;
}

.col-20 {
    width: 20%;
}

.col-10 {
    width: 10%;
}

.col-7 {
    width: 7%;
}

.col-75 {
    width: 75%;
}

.col-70 {
    width: 70%;
}

.col-40 {
    width: 40%;
}

.col-60 {
    width: 60%;
}

.round-border {
    border-radius: 50%;
}

.border-right {
    border-right: 1px solid #eeeeee;
    margin: 20px;
}

.view-profile {
    bottom: -25px;
    left: 50%;
    transform: translate(-50%, 0);
}

.functions {
    max-width: 250px;
    text-align: center;
    background: #eeeeee;
    padding: 5px 10px;
    margin-right: 5px;
    font-size: 13px;
    font-family: "OpenSans-semibold";
    color: #474d57;
    margin-bottom: 10px;
    display: inline-block;
}

.column-heading {
    border-bottom: 1px solid #e2e2e3;
    padding-bottom: 10px;
}

.show-next img {
    width: 50px;
}

.col-35 {
    width: 35%;
}

.col-65 {
    width: 65%;
}

.who-is-who-person .card-top,
.who-is-who-company .card-top {
    color: black;
}
.who-is-who-person .card-top span,
.who-is-who-company .card-top span {
    font-family: "OpenSans-bold";
    padding-left: 20px;
}
.who-is-who-person h1,
.who-is-who-company h1 {
    font-size: 38px;
    margin-bottom: 0;
}
.who-is-who-person .main-img,
.who-is-who-company .main-img {
    margin-top: 10px;
}
.who-is-who-person .heading-bookmark-wrap,
.who-is-who-company .heading-bookmark-wrap {
    padding-right: 30px;
}

.comapany-position-wrap li:not(:last-child)::after {
    content: "|";
    color: currentColor;
    padding-left: 5px;
    margin-right: 4px;
}

.working-group-wrap {
    background: #6a28d9;
    padding: 10px;
    width: max-content;
    color: white;
}

.working-group {
    /*margin-top: 25px;*/
}

.working-grop-card-head {
    font-size: 20px;
}

.fa-user-plus {
    padding: 5px;
    color: white;
    padding-right: 20px;
}

.take-copy {
    width: 100%;
}
.take-copy a,
.take-copy > span {
    margin: 5px 5px 10px 5px;
    color: #c5c5c8;
    cursor: pointer;
}
.take-copy a::after,
.take-copy > span::after {
    content: "";
    border-right: 1px solid #c5c5c8;
    padding-left: 5px;
    padding-right: 5px;
}
.take-copy a.copy-link,
.take-copy > span.copy-link {
    margin-right: 0;
}
.take-copy a.copy-link::after,
.take-copy > span.copy-link::after {
    display: none;
}
.take-copy img {
    width: 20px;
    margin-right: 10px;
}

.border-bottom {
    border-bottom: 1px solid #e2e2e3;
}

.person-details ul li {
    color: #6a28d9;
    line-height: 1.4;
    list-style: none;
    font-family: "OpenSans-semibold";
}
.person-details h2 {
    font-size: 22px;
    margin-bottom: 25px;
}

.event p {
    font-family: "OpenSans-bold";
    padding-left: 20px;
}

.events-details {
    padding: 0 !important;
}
.events-details h3 {
    /*
    font-size: 24px;
    font-family: "OpenSans-light";
    */
    margin-top: 10px;
}
.events-details p {
    /*font-family: "OpenSans-light";*/
}

.events hr {
    margin-top: 30px;
    margin-bottom: 30px;
}
.events .events-download {
    border-bottom: 1px solid #efefef;
}

.add-download-bg {
    background-image: url("../images/downloadbar-icon.svg");
    width: 20px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    height: 20px;
    margin-right: 5px;
}

.detailed-page {
    /*padding-top: 140px !important;*/
}
.detailed-page h1 {
    font-size: 40px;
    margin-bottom: 0;
}

.main-pages h2 {
    font-size: 30px;
}
.main-pages .heading-content-wrap h3 {
    margin-bottom: 20px;
}
.main-pages .listSearch {
    max-width: 1200px;
    margin: auto;
}
.main-pages .listSearch .btn {
    min-width: 225px;
}
.main-pages .menu-search {
    width: 100%;
}
.main-pages .menu-search hr {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.main-pages hr {
    margin-top: 50px;
    margin-bottom: 50px;
}

.icon-star {
    padding-left: 22px;
    font-size: 14px;
}
.icon-star:before {
    content: "";
    background-image: url("../images/star.svg") !important;
    position: absolute;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    left: 0;
    top: 5px;
}

.deal-facts {
    background-color: #f0f0f1;
    padding: 10px;
}
.deal-facts .items {
    padding: 0;
    margin-bottom: 5px;
}

.heading-content-wrap {
    /*font-family: "OpenSans-light";*/
}

.content-area {
    /*
  &.stories{
    .owl-prev {
    background-image: url("../images/left-arrow-gray.svg") !important;
    width: 15px;
    display: block;
    height: 40px;
    background-repeat: no-repeat !important;
    position: absolute;
    left: -25px;
    top: 20px;
    font-size: 100px !important;
    span {
      display: none;
    }
    }
  
  .owl-next {
    background-image: url("../images/right-arrow-gray.svg") !important;
    width: 15px;
    display: block;
    height: 40px;
    background-repeat: no-repeat !important;
    position: absolute;
    right: -45px;
    top: 20px;
    font-size: 100px !important;
    background-position: right center;
    span {
      display: none;
    }
  }
   
}
*/
}

.detail-view .company-name h1 {
    font-size: 40px;
    margin-bottom: 0 !important;
}

.data-protrction-heading h2 {
    font-size: 25px;
}
.data-protrction-heading h3 {
    font-size: 20px;
}

.icon-pen {
    padding-left: 22px;
    font-size: 14px;
}
.icon-pen:before {
    content: "";
    background-image: url("../images/pen-nib.svg");
    position: absolute;
    margin-right: 10px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    left: 0;
    top: 3px;
}

a.read-more {
    font-family: "OpenSans-semibold";
    font-size: 14px;
}
a.read-more:after {
    content: "";
    background-image: url("../images/arrow-right.svg");
    font-size: 20px;
    display: inline-block;
    background-position: center center;
    margin-left: 5px;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.date-views-wrap > * {
    font-size: 15px;
}
.date-views-wrap > *:not(:last-child):after {
    content: "|";
    color: black;
    padding-left: 5px;
    padding-right: 5px;
}

.detail-view hr {
    margin-top: 40px;
    margin-bottom: 40px;
}
.detail-view .releted-links hr {
    margin-top: 5px;
    margin-bottom: 5px;
}

.error-404 .footer {
    margin-top: 0;
}

.outer-img-wrap img {
    display: block;
    width: 100%;
}

.footer-images-wrap .error-imgsmall {
    width: 20%;
    position: absolute;
    right: 0;
    top: -10px;
}
.footer-images-wrap .error-imgbig {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
}

.banner-image-outer {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.banner-image {
    height: auto;
    min-width: 100%;
    position: absolute;
    min-height: 100%;
    width: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: inherit;
}

.icon-with-title {
    padding-left: 25px;
    font-size: 14px;
    font-family: "OpenSans-bold";
    position: relative;
}
.icon-with-title:before {
    content: "";
    position: absolute;
    margin-right: 10px;
    width: 20px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    bottom: 0;
    top: 6px;
}

.icon-calendar {
    padding-left: 25px;
    font-size: 14px;
}
.icon-calendar:before {
    content: "";
    background-image: url("../images/Icon-Events-violet.png");
    position: absolute;
    margin-right: 10px;
    width: 20px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    bottom: 0;
    top: 4px;
}

::placeholder {
    color: #c5c5c8;
    opacity: 1;
    /* Firefox */
}

.userarea .field-wrap {
    margin-bottom: 28px;
}
.userarea .search-item {
    padding-top: 5px;
}
.userarea .check {
    border: 1px solid black;
}
.userarea hr {
    margin-bottom: 25px;
    width: 100%;
}
.userarea .bread-crumb {
    /*padding-top: 45px;*/
}
.userarea .profile-header-wrap h2 {
    font-size: 32px;
}
.userarea .left-menu {
    font-size: 20px;
    /*margin-bottom: 150px;*/
}
.hideleftmenu .col-75 {
    width: 100%;
}
.userarea .left-menu ul {
    padding: 50px 0 50px 0;
    background-image: linear-gradient(180deg, #6a28d9 0%, #c35683 100%);
    border-radius: 10px 10px 10px 10px;
}
.userarea .left-menu ul li {
    position: relative;
    margin-bottom: 20px;
}
.userarea .left-menu ul li a {
    color: #ffffff;
    display: block;
    padding: 0 22px 0 60px;
}
.userarea .left-menu ul li a:hover {
    /*
          background-color: #ffffff;
          color: $pink-color;*/
    text-decoration: underline;
}
.userarea .left-menu ul li .mnu-icon {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 5px;
    left: 25px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}
.userarea .left-menu ul li .mnu-icon.pm-icon-dashboard {
    background-image: url(../images/Icon-Dashboard.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-u-profile {
    background-image: url(../images/Icon-Profile.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-c-profile {
    background-image: url(../images/Icon-Company.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-dealroom {
    background-image: url(../images/Icon-Dealroom.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-stories {
    background-image: url(../images/Icon-Successstories.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-thoughts {
    background-image: url(../images/Icon-News.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-events {
    background-image: url(../images/Icon-Events.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-bookmarks {
    background-image: url(../images/Icon-Favoriten.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-settings {
    background-image: url(../images/Icon-Settings.png);
}
.userarea .left-menu ul li .mnu-icon.pm-icon-management {
    background-image: url(../images/Icon-Management.png);
}
.userarea .left-menu ul li.active {
    /*
      .mnu-icon.pm-icon-dashboard {
        background-image: url(../images/pm-icon-dashboard-act.svg);
      }
      .mnu-icon.pm-icon-u-profile {
        background-image: url(../images/pm-icon-u-profile-act.svg);
      }
      .mnu-icon.pm-icon-c-profile {
        background-image: url(../images/pm-icon-c-profile-act.svg);
      }
      .mnu-icon.pm-icon-dealroom {
        background-image: url(../images/pm-icon-dealroom-act.svg);
      }
      .mnu-icon.pm-icon-stories {
        background-image: url(../images/pm-icon-stories-act.svg);
      }
      .mnu-icon.pm-icon-thoughts {
        background-image: url(../images/pm-icon-thoughts-act.svg);
      }
      .mnu-icon.pm-icon-events {
        background-image: url(../images/pm-icon-events-act.svg);
      }
      .mnu-icon.pm-icon-bookmarks {
        background-image: url(../images/pm-icon-bookmarks-act.svg);
      }
      .mnu-icon.pm-icon-settings {
        background-image: url(../images/pm-icon-settings-act.svg);
      }*/
}
.userarea .left-menu ul li.active a {
    text-decoration: underline;
    color: #fff !important;
    font-family: "OpenSans-semibold";
}
.userarea .left-menu ul li.profile-icon {
    padding: 0 25px 0 25px;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
}
.userarea .left-menu ul li.profile-icon .user-icon {
    width: 100px;
    height: 100px;
    margin: auto;
}
.userarea .left-menu ul li.profile-icon .user-icon img {
    border-radius: 100px;
}
.userarea .left-menu ul li.profile-icon .user-name {
    font-size: 16px;
    margin-top: 15px;
}
.userarea .col-75 {
    padding-left: 60px;
}
.userarea.userarea-edit h1 {
    font-size: 25px;
}
.userarea.userarea-edit h2 {
    font-size: 24px;
}
.userarea.userarea-landing h1 {
    font-size: 40px;
    margin-bottom: 5px;
}
.userarea.userarea-landing h2 {
    font-size: 24px;
}
.userarea.userarea-landing .prifile-edit-header h1 {
    font-size: 24px;
}
.userarea .change-option {
    background: transparent;
    align-self: flex-end;
    padding-top: 1px;
    padding-bottom: 1px;
    color: black;
    font-size: 13px;
    width: auto;
    position: relative;
}

.add-field,
.add-link,
.add-document,
.add-contact-person,
.add-advisor,
.add-buyer,
.add-seller,
.add-extra-content,
.add-contact-from-list {
    cursor: pointer;
    margin-top: 15px;
    padding: 5px 15px 6px;
    line-height: 1.4;
    margin-bottom: 30px;
    background: #c5c5c8;
    font-size: 14px;
    max-width: 350px;
    margin-right: 10px;
    display: inline-block;
}

.edit-delete-option {
    text-align: center;
    font-size: 14px;
}
.edit-delete-option:last-child {
    margin-right: 0 !important;
}
.edit-delete-option .dataroom-link {
    background: #6a28d9;
    min-width: 80px;
    display: block;
    padding: 6px 15px;
    line-height: 1.4;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    /*border: 2px solid #c5c5c8;*/
}
.edit-delete-option .dataroom-link:hover {
    background-color: black;
}
.edit-delete-option span,
.edit-delete-option a,
.edit-delete-option .publish,
.edit-delete-option .input-delete {
    background: #c5c5c8;
    min-width: 80px;
    display: block;
    padding: 6px 15px;
    line-height: 1.4;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.edit-delete-option span:hover,
.edit-delete-option a:hover,
.edit-delete-option .publish:hover,
.edit-delete-option .input-delete:hover {
    background-color: black;
}
.edit-delete-option .statistics-link {
    background: #ff7459;
}
.edit-delete-option form {
    height: 100%;
}

.edit-delete-wrap input[type="submit"] {
    -webkit-border-radius: 0;
}
.edit-delete-wrap .edit-delete-option {
    margin-top: 10px;
    margin-right: 15px;
}
.edit-delete-wrap .input-delete {
    height: 100%;
}

.edit-inline {
    cursor: pointer;
}

.edit-delete-option .investors-link {
    background-color: #c3568c;
}

.publish {
    border: none;
    background: transparent;
    text-align: center;
    cursor: pointer;
    min-width: 100px;
    padding: 5px 25px;
    height: 100%;
}

.input-delete {
    /*
  border: none;
  background: transparent;
  text-align: center;
  cursor: pointer;
  min-width: 100px;
  padding: 5px 25px;
  height: 100%;*/
}

.addprofile {
    min-width: 300px !important;
    position: relative;
    padding: 12px 60px 12px 40px !important;
}
.addprofile::after {
    background-image: url("../images/plus-icon.svg");
    position: absolute;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    right: 25px;
    top: 33%;
}
.addprofile:hover:after {
    background-image: url("../images/plus-icon-hover.svg");
}

.img-content-wrap img {
    height: 300px;
}

.userarea-landing .menu-search {
    margin: 0;
}
.userarea-landing .menu-search form .investment .icon-flied-wrap {
    width: 100%;
}
.userarea-landing hr {
    margin-bottom: 0;
}

.dashboard .heading-span-wrap span {
    font-size: 26px;
}
.dashboard h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
.dashboard .card {
    height: auto;
}
.dashboard .card .card-body {
    max-width: 500px;
    margin: auto;
}
.dashboard .card .card-body span {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
    display: inline-block;
}

h2.small {
    font-size: 22px;
}

.btn-half {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -30px;
    padding: 13px;
    text-align: center;
    border-radius: 20px;
}

.add-user span {
    /*
  font-family: "OpenSans-bold";
  padding-left: 20px;*/
}
.add-user span:before {
    content: "";
    background-image: url("../images/Icon-Profile-violet.png");
    /*
    position: absolute;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;*/
    top: 5px;
}
.add-bookmark span:before {
    content: "";
    background-image: url("../images/icon-bookmark-violet.svg");
    /*
    position: absolute;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;*/
    top: 2px;
    background-size: 12px auto;
}

.add-industry span {
    /*
  font-family: "OpenSans-bold";
  padding-left: 20px;*/
}
.add-industry span:before {
    content: "";
    background-image: url("../images/Icon-Dealroom-violet.png");
    /*
    position: absolute;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    */
}

.add-invite span {
    /*
 font-family: "OpenSans-bold";
*/
}
.add-invite span:before {
    content: "";
    background-image: url("../images/Icon-AddUser-violet.png");
    /*
    position: absolute;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    */
}

.add-profile {
    top: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.btn-delete {
    border: 2px solid #202833;
    width: 80px;
    color: #202833;
}

.small-btn {
    height: 30px;
    border-radius: 20px;
}

.working-grop-card {
    border: 1px solid #c5c5c8;
    padding: 25px;
}

.add-field a,
.add-field span,
.add-link a,
.add-link span,
.add-document a,
.add-document span,
.add-contact-person a,
.add-contact-person span,
.add-advisor a,
.add-advisor span,
.add-buyer a,
.add-buyer span,
.add-seller a,
.add-seller span,
.add-extra-content a,
.add-extra-content span,
.add-contact-from-list a,
.add-contact-from-list span {
    cursor: pointer;
    position: relative;
    margin-left: 20px;
    display: inline-block;
}
.add-field a::before,
.add-field span::before,
.add-link a::before,
.add-link span::before,
.add-document a::before,
.add-document span::before,
.add-contact-person a::before,
.add-contact-person span::before,
.add-advisor a::before,
.add-advisor span::before,
.add-buyer a::before,
.add-buyer span::before,
.add-seller a::before,
.add-seller span::before,
.add-extra-content a::before,
.add-extra-content span::before,
.add-contact-from-list a::before,
.add-contact-from-list span::before {
    background-image: url("../images/plus-icon.svg");
    display: inline-block;
    width: 25px;
    height: 15px;
    background-repeat: no-repeat;
    content: "";
    margin-left: -25px;
    background-size: 15px 15px;
    vertical-align: middle;
    margin-top: -2px;
}

.cards-group img {
    width: 80px;
    padding: 10px;
}

.keylocked {
    position: absolute;
    top: 50%;
    right: 25px;
}

.notification-setting {
    /* Rounded sliders */
}
.notification-setting .switch {
    position: relative;
    display: inline-block;
    width: 43px;
    height: 20px;
}
.notification-setting .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.notification-setting .toggle-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #202833;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.notification-setting .toggle-switch:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.notification-setting input:checked + .toggle-switch {
    background-color: #6a28d9;
}
.notification-setting input:focus + .toggle-switch {
    box-shadow: 0 0 1px black;
}
.notification-setting input:checked + .toggle-switch:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}
.notification-setting .toggle-switch.ovel {
    border-radius: 34px;
}
.notification-setting .toggle-switch.ovel:before {
    border-radius: 50%;
}
.notification-setting .switches label {
    font-size: 16px;
    cursor: pointer;
}

.resetpasswd .parsley-errors-list {
    color: #c5c5c8;
}

.btn-confirm {
    color: #8837bf;
    border: 2px solid #8837bf;
}

.content-pages .contents h2 {
    font-size: 25px;
    margin-bottom: 20px;
}
.content-pages .contents h3 {
    font-size: 16px;
    color: #6a28d9;
}
.content-pages .contents p {
    margin-bottom: 50px;
}

.footer-bg {
    background-image: url("../images/curve-half.png");
    height: 300px;
    background-repeat: no-repeat;
    width: 100%;
    background-size: 100% 100%;
}

.curve-half-bg {
    background: url("../images/curved-bg.svg") center bottom no-repeat;
    background-size: 100%;
    padding-bottom: 500px;
}

.bootom-curve .footer {
    margin-top: 0;
}

.upload-img {
    /*
  width: 300px;*/
    max-width: 100%;
    margin-right: 10px;
    position: relative;
}
.upload-img img {
    display: block;
}

.pick-pubtype {
    background-image: url("../images/publication-icon.svg");
    background-repeat: no-repeat;
    background-position: left center;
    height: 100%;
    width: 100%;
    background-size: 20px 20px;
}

.pick-user {
    background-image: url("../images/usericon-img.svg");
    background-repeat: no-repeat;
    background-position: left center;
    height: 100%;
    width: 100%;
    background-size: 20px 20px;
}

.pick-euro {
    background-image: url("../images/euro.svg");
    background-repeat: no-repeat;
    background-position: left center;
    height: 100%;
    width: 100%;
    background-size: 20px 20px;
}

.pick-industry {
    background-image: url("../images/industry.svg");
    background-repeat: no-repeat;
    background-position: left center;
    height: 100%;
    width: 100%;
    background-size: 20px 20px;
}

.pick-country {
    background-image: url("../images/country.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px 20px;
}

.pick-location {
    background-image: url("../images/location.svg");
    background-repeat: no-repeat;
    background-position: left;
}

.pick-date {
    background-image: url("../images/calendar.png");
    background-repeat: no-repeat;
    background-position: left center;
    cursor: pointer;
    background-size: 20px 20px;
    width: 100%;
}

.datepicker {
    background-image: url("../images/calendar.png");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.pos-left {
    background-position: left;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: none;
    background: none;
    font-weight: normal;
    color: #2b2b2b;
}

.ui-datepicker {
    z-index: 999 !important;
}

.comiseo-daterangepicker-triggerbutton.ui-button {
    min-width: auto;
}
.comiseo-daterangepicker-triggerbutton.ui-button .ui-button-icon {
    display: none;
}

.comiseo-daterangepicker.ui-widget-content {
    border: none;
    box-shadow: 0px 3px 26px #00000029;
}
.comiseo-daterangepicker.ui-widget-content
    .ui-state-highlight
    a.ui-state-default {
    background: #6a28d9;
    color: #ffffff;
    border-radius: 4px;
}
.comiseo-daterangepicker.ui-widget-content .ui-widget {
    font-family: "open sans";
    color: #202833;
}
.comiseo-daterangepicker.ui-widget-content .ui-widget .ui-state-highlight {
    border-radius: 4px;
    background: #f0f0f1;
}
.comiseo-daterangepicker.ui-widget-content .ui-widget .ui-state-default {
    color: #202833;
}
.comiseo-daterangepicker.ui-widget-content .ui-widget .ui-widget-header {
    color: #202833;
    font-weight: normal;
}
.comiseo-daterangepicker.ui-widget-content
    .ui-widget
    .ui-widget-header
    .ui-icon {
    background-position: center center;
}
.comiseo-daterangepicker.ui-widget-content
    .ui-widget
    .ui-widget-header
    .ui-datepicker-prev
    .ui-icon {
    background-image: url("../images/arrow-left-black.svg");
    width: 14px;
    height: 14px;
}
.comiseo-daterangepicker.ui-widget-content
    .ui-widget
    .ui-widget-header
    .ui-datepicker-next
    .ui-icon {
    background-image: url("../images/arrow-right-black.svg");
}
.comiseo-daterangepicker.ui-widget-content
    .ui-widget
    .ui-widget-header
    .ui-datepicker-prev-hover {
    left: 2px;
}
.comiseo-daterangepicker.ui-widget-content
    .ui-widget
    .ui-widget-header
    .ui-datepicker-prev-hover,
.comiseo-daterangepicker.ui-widget-content
    .ui-widget
    .ui-widget-header
    .ui-datepicker-next-hover {
    top: 2px;
}
.comiseo-daterangepicker.ui-widget-content
    .ui-widget
    .ui-widget-header
    .ui-datepicker-next-hover {
    right: 2px;
}
.comiseo-daterangepicker.ui-widget-content
    .comiseo-daterangepicker-buttonpanel
    > button {
    font-weight: normal;
}
.comiseo-daterangepicker.ui-widget-content
    .comiseo-daterangepicker-buttonpanel
    > button:active {
    background-color: transparent;
}
.comiseo-daterangepicker.ui-widget-content th {
    font-weight: normal;
    font-size: 12px;
}

.ui-datepicker-calendar .ui-widget.ui-widget-content {
    border: none;
    box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 10px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}

.ui-datepicker-header .ui-widget-header .ui-icon {
    background-image: url("../images/arrow-left-black.svg");
}

.ui-widget-content {
    border: none;
    box-shadow: #303842;
}

.ui-widget-header {
    background: transparent;
    border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: none;
    background: transparent;
    text-align: center;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background-color: #6a28d9;
    border: none;
    border-radius: 5px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    background: #eeeeee;
    border-radius: 5px;
    border: none;
}

/* Content tabs */
.content-tabs.ui-widget.ui-widget-content {
    border: none;
    background: none;
    color: #ffffff;
}
.content-tabs .content-tabs-label li {
    margin-bottom: 0 !important;
}
.content-tabs .content-tabs-label li.ui-tabs-active {
    background: none;
    margin-bottom: 0 !important;
}
.content-tabs .content-tabs-label li a {
    color: #ffffff;
    font-size: 46px;
    font-family: "OpenSans-light";
    padding: 5px 0 !important;
}
.content-tabs .content-tabs-label li a .content-tabs-number {
    font-size: 28px;
}
.content-tabs .content-tabs-label li.ui-state-active {
    border: none !important;
    outline: none;
}
.content-tabs .content-tabs-label li.ui-state-active a {
    font-family: "OpenSans-bold";
}
.content-tabs .ui-widget-content {
    color: #ffffff;
    line-height: 1.5;
}
.content-tabs .content-tabs-cnt ul {
    margin-left: 12px;
}
.content-tabs .content-tabs-cnt li {
    list-style: unset;
    margin-bottom: 15px;
}

.ui-tabs-vertical .ui-tabs-nav {
    padding: 0.2em 0.1em 0.2em 0.2em;
    float: left;
    width: 40%;
}

.ui-tabs-vertical .ui-tabs-nav li {
    outline: none;
    clear: left;
    width: 100%;
    border-bottom-width: 1px !important;
    border-right-width: 0 !important;
    margin: 0 -1px 0.2em 0;
}

.ui-tabs-vertical .ui-tabs-nav li a {
    display: block;
}

.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
    padding-bottom: 0;
    padding-right: 0.1em;
    border-right-width: 1px;
}

.ui-tabs-vertical .ui-tabs-panel {
    padding: 1em;
    float: right;
    width: 60%;
}

/* Content tabs END */
.ms-options-wrap > button:focus,
.ms-options-wrap > button {
    /*height: 50px;*/
    display: inline-block;
    box-sizing: border-box;
    padding: 10px;
    font-family: "Open Sans";
    border: 1px solid #c5c5c8;
}

.ms-options-wrap > button::after {
    content: "";
    cursor: pointer;
    background-image: url("../images/arrow-down-black.svg");
    background-repeat: no-repeat;
    width: 11px;
    height: 7px;
    border: none;
    background-position: 95%;
    background-size: contain;
    right: 15px;
}

.form-select-wrap .ms-options-wrap > button {
    height: 50px;
    font-size: 16px;
    color: #202833;
}

.max-selected-3 .ms-options-wrap > button {
    padding-right: 150px;
}

.selected-values {
    margin-top: 20px;
    display: block;
}

select#listSorting {
    background-color: white;
    background-image: url("../images/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 15px auto;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    min-width: 245px;
    text-align: center;
}

.filter-label {
    text-align: center;
    background: #eeeeee;
    padding: 1px 5px 1px 10px;
    margin-right: 15px;
    font-size: 12px;
    font-family: "Open Sans";
    color: #474d57;
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: middle;
}

.userarea .close,
.menu-search .close,
.add-fields-onClick .close {
    margin-left: 10px;
    cursor: pointer;
    font-size: 12px;
}

.renders {
    position: relative;
}

.ms-options {
    position: absolute;
    width: inherit;
}

.deleteall {
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    vertical-align: top;
    white-space: nowrap;
}

.ms-options-wrap > .ms-options {
    margin-top: 3px;
    min-width: 220px;
}

.ms-options-wrap > .ms-options > ul li.selected label {
    background-color: unset;
    border-color: unset;
}

.ms-options-wrap > .ms-options > ul label {
    border: unset;
    cursor: pointer;
}

.ms-options-wrap > .ms-options > ul label.focused,
.ms-options-wrap > .ms-options > ul label:hover {
    background-color: unset;
    border-color: unset;
}

.ms-options-wrap > .ms-options > ul input[type="checkbox"] {
    -webkit-appearance: none;
    border: 1px solid #c5c5c8;
    padding: 9px;
    display: inline-block;
    margin-top: 0;
    cursor: pointer;
}
.ms-options-wrap > .ms-options > ul input[type="checkbox"]:checked {
    background-image: url("../images/checkbox-checked-icon.svg");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.pick-date > button {
    padding: 10px 10px 10px 25px;
    width: 100%;
    margin: 0;
    border: none;
    background-color: transparent;
    min-width: auto;
}
.pick-date > button:active {
    background-color: transparent;
}

.menu-search .ms-options-wrap > button:focus,
.menu-search .ms-options-wrap > button {
    border: none;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    background-color: transparent;
    min-width: auto;
}
.menu-search .ms-options-wrap > button::after {
    -webkit-appearance: none;
    background-image: url("../images/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right center;
    font-family: "OpenSans-light";
    text-align: center;
    width: 13px;
    height: 8px;
    right: 5px;
}
.menu-search .ms-options-wrap > button::after.rotate {
    background-image: url("../images/arrow-up.svg");
}

.remove_field {
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
    text-transform: lowercase;
    font-size: 20px;
}
.remove_field.w-btn {
    top: 10px;
    padding: 10px 15px;
    border: 1px solid #202833;
    border-radius: 20px;
    font-size: 14px;
    font-family: "OpenSans-semibold";
    line-height: 1;
}

.ui-timepicker-standard a {
    border: none;
}

.jconfirm-title {
    color: #6a28d9;
}

.jconfirm .jconfirm-box.jconfirm-type-blue {
    border-top: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button:first-child {
    border: 1px solid #6a28d9;
    border-radius: 65px;
    color: #6a28d9;
}

.jconfirm .jconfirm-box .jconfirm-buttons button:last-child {
    border: 1px solid black;
    border-radius: 65px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover:first-child {
    color: #6a28d9;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #ccc;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    white-space: nowrap;
}

.add-fields-onClick .form-control {
    padding-right: 30px;
}
.add-fields-onClick .add {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.read-only .form-control {
    border: none;
    background-color: #eeeeee;
    padding: 10px;
    font-size: 13px;
    font-family: "OpenSans-semibold";
    color: #474d57;
}

.add-fields-onClick .read-only {
    display: inline-block;
    padding: 1px 5px 1px 10px;
    margin-right: 15px;
    margin-bottom: 10px;
    background: #eeeeee;
    font-size: 12px;
}
.add-fields-onClick .read-only .form-control,
.add-fields-onClick .read-only .field-label {
    padding: 0;
    text-align: center;
    font-family: "Open Sans";
    color: #474d57;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: auto;
}
.add-fields-onClick .read-only .form-control {
    width: 0;
    height: 0;
}

.input-form {
    font-family: "OpenSans-semibold";
    color: #474d57;
}

.proffessional-details .name {
    font-size: 25px;
}
.proffessional-details .comapany-name {
    font-size: 20px;
}

.related-events .card-img {
    height: 200px;
}
.related-events .card-img img {
    max-height: 100%;
}

@media print {
    @page {
        size: 1200px 1300px;
        margin-left: 20px;
        margin-right: 20px;
        -webkit-print-color-adjust: exact !important;
        -moz-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    body {
        -webkit-print-color-adjust: exact !important;
        -moz-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    .no-print {
        display: none !important;
    }
    
    .avoid-print-break {
        break-inside: avoid ;
    }
    .wrapper, .wrapper * {
        break-inside: avoid;
    }
    
    #header,
    .bread-crumb,
    .corve-bg,
    .footer,
    .lang-menu,
    .menu,
    .login-menu,
    .see-more,
    .see-more-noajax,
    .see-more-outer,
    .bookmark-icon,
    .take-copy,
    .goBack,
    .icon-star:before,
    .icon-pen:before,
    .icon-calendar:before {
        display: none !important;
    }

    /*
  #header {
    position: relative !important;
    box-shadow: none;
  }
  */
    .col-34 {
        padding-top: 50px;
    }

    .person-details {
        padding-bottom: 50px;
    }

    .content-area {
        padding-top: 0 !important;
    }

    .card {
        box-shadow: none !important;
    }
    .card .card-body {
        padding: 20px 0 10px 0;
    }
    
    
    .detail-page .who-is-who-person .heading-bookmark-wrap,
    .detail-page .who-is-who-company .heading-bookmark-wrap {
        margin-top: 10px;
    }
    .detail-page .pb-135 {
        padding-bottom: 50px;
    }
    .detail-page .mb-50 {
        margin-bottom: 25px !important;
    }
    .detail-page .row {
        display: block !important;
    }
    .detail-page .row:after {
        content: "";
        display: table;
        clear: both;
    }
    .detail-page .related-records .pt-135 {
        padding-top: 50px !important;
    }
    .detail-page .related-deals .card-footer {
        display: none;
    }
    .detail-page .related-deals .card-body {
        padding: 20px 0 10px 10px;
    }
    .detail-page .related-stories .col {
        float: left;
        width: 50%;
    }
    .detail-page .related-stories .col-img-bg {
        display: none;
    }
    .detail-page .related-stories .col-showbg_hideimg .col-img {
        position: inherit;
        left: 0;
        width: 100%;
        height: auto;
    }
    .detail-page .related-thoughts .owl-stage {
        display: block;
        width: 100% !important;
    }
    .detail-page .related-thoughts .owl-item {
        width: 100% !important;
        margin-right: 0 !important;
    }
    .detail-page .related-thoughts .card-heading {
        color: #000 !important;
    }
    .detail-page .related-thoughts .card .card-heading {
        padding-top: 0;
    }
    .detail-page .related-thoughts .card .card-body .card-img {
        float: left;
        width: 40% !important;
        max-width: 300px;
    }
    .detail-page .related-thoughts .card .card-body .card-content {
        float: left;
        width: 60% !important;
    }
    .detail-page .related-thoughts .card .card-footer {
        display: none;
    }
    .detail-page .related-events .card-footer {
        display: none;
    }
    .detail-page .related-events .card-img {
        height: auto;
    }
    .detail-page .share-icon a {
        background: transparent;
    }
    .detail-page .share-icon i {
        color: #c5c5c8;
    }
    .detail-page .color-pink,
    .detail-page .color-pink a,
    .detail-page .person-details ul li {
        color: #000 !important;
    }
    .detail-page .functions,
    .detail-page .tags .bg-light-gary,
    .detail-page .btn-light {
        padding: 0 !important;
        background: transparent;
    }
    .detail-page .process-document .col1,
    .detail-page .process-document .col-footer,
    .detail-page .process-document .card-footer {
        display: none;
    }
    .detail-page .process-document .col2 {
        padding-left: 0 !important;
    }
    .detail-page .icon-star,
    .detail-page .icon-pen,
    .detail-page .icon-calendar {
        padding-left: 0 !important;
    }
    .left-menu .down-arrow {
        display: none !important;
    }
}
.visible {
    visibility: visible;
}

.menu-search select option {
    color: #202833;
    -webkit-appearance: none;
    font-size: 18px;
    width: inherit;
    padding-left: 20px;
}

.left-nav-open {
    display: none;
}

.pricing-content td,
.pricing-content th {
    border: 1px solid #ddd;
    padding: 10px;
    line-height: 1.4;
    font-size: 14px;
}
.pricing-content p {
    width: 50%;
    margin: auto;
}
.pricing-content .card {
    padding: 60px;
}
.pricing-content .card .card-footer {
    position: absolute;
    bottom: -30px;
    padding: 13px;
    text-align: center;
    border-radius: 20px;
    left: 50%;
    margin-left: -200px;
}
.pricing-content .card .card-footer .btn {
    min-width: 400px;
}
.pricing-content td {
    font-size: 14px;
    width: 17%;
}
.pricing-content th:empty,
.pricing-content td:empty {
    border: 0;
    height: 40px;
}
.pricing-content table {
    border-collapse: collapse;
}
.pricing-content .plane-bg {
    background-image: url("../images/plane.png");
    width: 300px;
    background-repeat: no-repeat;
    height: 300px;
    z-index: 8;
    top: -50px;
    position: absolute;
    left: -80px;
    background-size: contain;
}
.pricing-content .men-bg {
    background-image: url("../images/men.png");
    width: 200px;
    background-repeat: no-repeat;
    height: 250px;
    z-index: 8;
    bottom: -100px;
    position: absolute;
    right: -80px;
    background-size: contain;
}

.credit-card-info .parsley-luhn {
    position: absolute;
}
.credit-card-info .jp-card-container {
    min-width: 80px;
    height: 60px;
    width: 80px;
}
.credit-card-info .jp-card {
    min-width: 80px;
    height: 60px;
    width: 80px;
}
.credit-card-info .jp-card-lower {
    display: none;
}
.credit-card-info .jp-card-back .jp-card-bar {
    display: none;
}
.credit-card-info .jp-card-back .jp-card-shiny {
    display: none;
}
.credit-card-info .jp-card-back .jp-card-cvc {
    left: 10px !important;
}

.jp-card .jp-card-back::after {
    display: none !important;
}

.card-wrapper {
    min-width: 80px;
    height: 60px;
    width: 80px;
    display: inline-block;
    margin-bottom: 50px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.delete-ac .input-delete {
    background: transparent;
    text-align: center;
    min-width: 160px;
    padding: 12px 22px;
    height: auto;
    /*border: 1px solid #202833;*/
}

.delete-ac .input-delete:hover {
    background: transparent !important;
}

.translate-icon {
    position: absolute;
    right: 0;
    color: #fff;
    top: 0px;
    cursor: pointer;
    background-color: #6a28d9;
    padding: 5px;
    font-size: 10px;
    line-height: 1;
}
.translate-icon .fas {
    font-size: 22px;
}

.project-title {
    cursor: pointer;
}

.project-description {
    display: none;
}

#bar-chart {
    width: 100%;
    height: 600px;
}

.pie-chart {
    width: 100%;
    height: 400px;
    text-align: center;
}

.multisteps .btn-wrap {
    position: relative;
}
.multisteps .btn-wrap input {
    position: absolute;
}
.multisteps .form-section {
    display: none;
}
.multisteps .form-section.current {
    display: inherit;
}
.multisteps .plan-selected-info p,
.multisteps .plan-selected-info button {
    font-size: 14px;
}

.icon-print,
.icon-v-card,
.icon-copylink {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.icon-v-card {
    background: url("../images/download-v-card.svg") center center no-repeat;
    width: 28px;
    height: 20px;
}

.icon-print {
    background: url("../images/print.svg") center center no-repeat;
    width: 24px;
    height: 24px;
    background-size: 22px;
}

.icon-copylink {
    background: url("../images/copy-link.svg") center center no-repeat;
    width: 20px;
    height: 20px;
}

.card {
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 3px 26px #0000001a;
    position: relative;
    padding: 20px 20px 20px 20px;
}
.card .btn-wrap input {
    visibility: hidden;
    opacity: 0;
}
.card .card-heading {
    position: relative;
}
.card .card-heading .company-logo {
    width: 238px;
    margin-right: 40px;
    height: 100px;
}
.card .card-heading .company-logo img {
    max-height: 100%;
    max-width: 100%;
}
.card .card-heading .company-name {
    font-size: 22px;
    line-height: 1.2;
    color: #202833;
}
.card .card-heading .company-name p {
    padding-top: 5px;
}
.card .card-heading .date.abs-pos {
    position: absolute;
    right: 0;
    top: -10px;
}
.card .card-body {
    padding: 20px 10px 10px 10px;
}
.card .col-sm-100 img {
    display: block;
}

.subscription_group {
    color: black;
}
.subscription_group p, .card-group p {
    margin-bottom: 10px;
}
.subscription_group .card {
    padding: 30px;
    text-align: center;
}
.subscription_group .card .card-header, .card-group .card-header {
    font-size: 20px;
    line-height: 1.3;
}
.subscription_group a {
    text-decoration: none;
}
.subscription_group ul li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 5px;
    text-align: left;
}
.subscription_group ul li::before {
    content: "";
    display: inline-block;
    background-image: url("../images/check-mark-green.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 30px;
    width: 20px;
    position: absolute;
    left: 0;
    top: 0;
}
.card-group.card {
	padding: 30px;
}
.list-style-disc, .list-style-square {
	margin-left: 1em;
}
.list-style-disc li {
	list-style: disc;
}
.list-style-square li {
	list-style: square;
}
.subscription_plan {
    color: black;
    line-height: 1.3;
}
.subscription_plan .btn-wrap {
    position: relative;
}
.subscription_plan .btn-wrap input {
    position: absolute;
}
.subscription_plan .card-footer {
    font-size: 12px;
}
.subscription_plan .card-body {
    padding: 5px;
}
.subscription_plan a {
    text-decoration: none;
}
.subscription_plan .plan-price span {
    font-size: 48px;
}
.subscription_plan .per-io-price {
    padding-top: 20px;
    color: #c5c5c8;
}
.subscription_plan .per-io-price span {
    font-size: 32px;
}
.subscription_plan .indv_plan_icon {
    height: 160px;
}
.subscription_plan .indv_plan_icon img {
    max-width: 75px;
    margin: auto;
}
.subscription_plan .card-header {
    padding-top: 4px;
}

.registration-page-logo {
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 250px;
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
}

.max-users {
    margin-top: 20px;
    margin-bottom: 20px;
}
.max-users span {
    font-size: 24px;
}

.payment-info {
    background-color: #f5f5f5;
    padding: 14px 15px;
    min-width: 330px;
}
.payment-info .border-bottom {
    border-color: #202833;
}
.payment-info .label {
    padding-right: 6px;
    max-width: 230px;
}
.payment-info .price {
    white-space: nowrap;
}

.divider {
    border-bottom: 1px solid #efefef;
}

.accordion .accordion-title {
    position: relative;
    cursor: pointer;
    padding-right: 20px;
}
.accordion .accordion-title:after {
    content: "";
    background-image: url("../images/arrow-down.svg");
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
    cursor: pointer;
    top: 12px;
}
.accordion .accordion-title.open:after {
    background-image: url("../images/arrow-up.svg");
}
.accordion.accordion-layout-2 .accordion-title {
    font-family: "OpenSans-bold";
    padding-left: 45px;
    padding-bottom: 5px;
}
.accordion.accordion-layout-2 .accordion-title:after {
    background-image: url("../images/icon-plus-round.png");
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-size: contain;
}
.accordion.accordion-layout-2 .accordion-title.open:after {
    background-image: url("../images/icon-minus-round.png");
}
.accordion.accordion-layout-2 .accordion-text {
    display: none;
    padding-left: 45px;
}
.accordion.accordion-layout-2 .accordion-list {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff;
}
.accordion.accordion-layout-2 .accordion-list:last-child {
    border: none;
}
.accordion.accordion-module {
    /*
  ul {
    margin: 0;
    padding-bottom: 20px;
  }
  li {
    list-style: none;
    margin: 0;
  }
  */
}

.tags .bg-light-gary a {
    color: #474d57;
    font-family: "OpenSans-semibold";
}

.iti {
    width: 100%;
}

.process-document-img {
    background-image: url("../images/download-doc-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 50px;
}
.process-document-img a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 0;
}

.col-img-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 330px;
    width: 100%;
}

.story-list .col-img,
.col-showbg_hideimg .col-img {
    /*
  position:absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  */
}

.usear-area-edit .profile-header-wrap h1 {
    font-size: 40px;
    margin-bottom: 0;
}

.mg-n-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.professional-details {
    color: #202833;
    font-family: "OpenSans-semibold";
    line-height: 1.3;
    font-size: 16px;
}
.professional-details h3 {
    font-size: 16px;
}
.professional-details h3 a {
    color: #202833;
}

.green-box {
    border-radius: 15px;
    line-height: 1.4;
}
.green-box .green-box-inner {
    padding-left: 35px;
    padding-right: 35px;
}
.green-box .check-icon {
    content: "";
    display: inline-block;
    background-image: url("../images/check-mark-white.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 25px;
    width: 25px;
    position: absolute;
    left: 0;
    top: 0;
}

.free-trial-batch {
    background-color: #b45d83;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.2;
    position: absolute;
    top: -25px;
    right: -8px;
    padding: 6px 15px 6px;
    max-width: 150px;
}
.free-trial-batch span {
    font-size: 16px;
    font-family: "OpenSans-semibold";
    display: block;
}

.repeat-content-wrap.with-translate-icon .remove_field {
    top: 0;
    right: 2px;
}
.repeat-content-wrap.after-click {
    border-top: 1px solid #e2e2e3;
    padding-top: 30px;
}

.project-reference .repeat-content-wrap.after-click .remove_field {
    top: 5px;
}

.add-extra-content-wrap.repeat_nolabel .repeat-content-wrap .remove_field {
    right: 7px;
}
.add-extra-content-wrap.repeat_nolabel .repeat-content-wrap input[type="text"] {
    padding-right: 20px;
}
.add-extra-content-wrap.repeat_nolabel .repeat-content-wrap.after-click {
    padding-top: 0;
    border: 0;
}

.inline-edit-outer.last {
    border: none;
}

.invite_list.even .email,
.invite_list.even .status {
    background: #efefef;
}
.invite_list .status.complete {
    color: #63c301;
}

.detail-big-img {
    max-height: 600px;
    overflow: hidden;
}

.tab-accordion-cont {
    display: none;
}

.blur-block {
    position: relative;
}
.blur-block .blur-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.blur-block .blur-description .blur-description-inner {
    position: absolute;
    left: 50%;
    top: 140px;
    transform: translateX(-50%);
    text-align: center;
    height: auto;
    min-width: 320px;
    width: 38%;
}
.blur-block img {
    width: 100%;
}

.name-share-wrap {
    margin-top: 10px;
}
.name-share-wrap .share-icons-group {
    position: inherit;
    margin-left: auto;
}

.nda-docs-dw .doc-header img {
    width: 250px;
    margin-bottom: 5px;
}
.nda-docs-dw .doc-docs > div {
    margin-bottom: 20px;
}
.nda-docs-dw .doc-docs .doc-text {
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 40px);
    margin-top: 5px;
}

.related-documents h2,
.releted-links h2,
.project-references h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.doc-content-wrap .inline-edit-outer .col-20 {
    width: 40px;
}
.doc-content-wrap .inline-edit-outer .col-80 {
    width: calc(100% - 250px);
    padding-right: 10px;
}
.doc-content-wrap .inline-edit-outer .edit_inline .w-50 img {
    max-width: 75px;
}

.logos_wrap {
    display: flex;
    align-items: center;
    width: 180px;
}
.logos_wrap img {
    padding: 10px;
}

.profile-header-wrap {
    padding-top: 10px;
}

.dataroom-form-info a {
    font-size: 0;
}
.dataroom-form-info a:after {
    content: "";
    background-image: url(../images/download-doc-icon.svg);
    background-repeat: no-repeat;
    width: 25px;
    height: 31px;
    display: inline-block;
    background-size: cover;
    margin-left: 10px;
    vertical-align: top;
}

.dataroom-form-outer {
    background: #e0e0e2;
    padding: 20px;
}

.dataroom-field-wrap {
    margin-bottom: 30px;
}

.dataroom-field {
    margin-right: 20px;
    width: 33.3%;
}
.dataroom-field input,
.dataroom-field select {
    background-color: white;
    border: none;
}

.dataroom_submit {
    max-width: 400px;
    margin: auto;
    position: relative;
    cursor: pointer;
}
.dataroom_submit input {
    white-space: normal;
}
.dataroom_submit .dw_icon-bg {
    background-image: url(../images/logo-icon-img.png);
    background-size: 35px 35px;
    position: absolute;
    left: -17px;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    top: 27px;
}

/*
.dataroom_submit input {
  white-space: normal;
  background: white;
  border: 1px solid #6A28D9;
  padding: 20px;
  border-radius: 15px;
}*/
.dataroom-info-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}
.dataroom-info-text ul li {
    list-style: outside;
}

.intralinks-info a {
    color: #202833;
}
.intralinks-info .intralink-text {
    width: calc(100% - 90px);
    line-height: 1.6;
    display: inline-block;
    vertical-align: top;
    padding-right: 10px;
}
.intralinks-info .intralink-icon {
    background-image: url("../images/download-doc-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 50px;
    display: inline-block;
}

.statistics a {
    text-decoration: underline;
}

#canvas {
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.crop-options {
    overflow: hidden;
    height: 400px;
}

.mx-w-450 {
    max-width: 450px;
}

.filepond--drop-label.filepond--drop-label label,
.file_upload_btn label {
    display: block;
    margin: 0;
    padding: 5px;
    line-height: 1;
    font-size: 14px;
    font-family: "OpenSans-semibold";
    color: #202833;
    cursor: pointer;
}

.filepond--root {
    /*height: 30px !important;*/
    cursor: pointer;
    width: 300px;
}
.filepond--root .filepond--drop-label {
    min-height: 40px;
    padding-left: 10px;
    padding-right: 60px;
    border: 1px solid #202833;
    background-image: url(../images/upload-arrow.png);
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center right 15px;
    background-color: #fff;
}

.file_upload_btn {
    /*
    min-height: 40px;
    padding-left: 10px;
    padding-right: 60px;
    border: 1px solid #202833;

    background-image: url(../images/upload-arrow.png);
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center right 15px;

    min-width: 200px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    */
}

.filepond--panel-root {
    background-color: transparent;
    /*border-radius: 30px;*/
    border-radius: 0;
}

.filepond--image-preview {
    background: #fff;
}

.filepond--panel-center {
    height: 40px;
}

.filepond--list {
    left: 0;
    right: 0;
}

.profile_upload {
    /*
    .filepond--root .filepond--list-scroller {
      margin-top: 0;
      margin-bottom: 0;
    }
    .filepond--item {
      margin: 0;
    }
    .filepond--list {
      left: 0;
      right: 0;
    }
    .filepond--drop-label.filepond--drop-label label,
    .filepond--root .filepond--drop-label {
      opacity: 0;
      visibility: hidden;
    }
    .filepond--hopper {
      position: absolute;
      left: 0;
    }
    */
}
.profile_upload .upload-img {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    max-width: 300px;
}
.profile_upload .upload-img img {
    margin-right: auto;
}
.profile_upload .file_upload_btn {
    /*
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  display: flex;
   align-items: flex-end;*/
    width: 100%;
    margin-left: -100%;
}
.profile_upload .filepond--root {
    width: 100%;
}
.profile_upload .filepond--root .filepond--list-scroller {
    margin-top: 0;
    margin-bottom: 0;
}
.profile_upload .filepond--item {
    margin: 0;
}
.profile_upload .filepond--list {
    left: 0;
    right: 0;
}

.filepond--image-preview-wrapper {
    border-radius: 0;
}

.section-wrap .section-sub-header {
    font-size: 18px;
}
.section-wrap.alternate-bg-section {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 30px;
}
.section-wrap.alternate-bg-section:nth-child(even) {
    background-color: #f7f7f7;
    padding-top: 25px;
}

.upload-file-wrap .file-info-text {
    margin-top: 5px;
    font-size: 12px;
}

.multiselect {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.select-wrap.pick-user .renders:last-child {
    display: none;
}

.goBack.botom {
    margin-top: 50px;
}

.detail-page .col-30 .link-overflow,
.detail-page .col-34 .link-overflow {
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.descr-maxHt {
    /*height: 115px;
  overflow: hidden;*/
}

.ui-dialog.no-header .ui-dialog-titlebar {
    display: none;
}

.ui-widget.ui-widget-content.no-header {
    max-width: 800px;
}

.renders .parsley-errors-list {
    position: absolute;
    left: 0;
    top: 55px;
}

.user-function-select {
    display: block !important;
    padding: 0 !important;
    position: absolute;
    visibility: visible;
}

.content-pages .contents p {
    margin-bottom: 30px;
}
.content-pages .contents a {
    color: #6a28d9;
}
.content-pages .contents ul {
    margin: 0 0 1em 1em;
}
.content-pages .contents li {
    list-style: disc;
    margin-bottom: 10px;
}
.content-pages .contents table {
    margin-bottom: 50px;
    border-collapse: collapse;
}
.content-pages .contents td,
.content-pages .contents th {
    border: 1px solid #000;
    padding: 5px;
    line-height: 1.4;
    font-size: 14px;
}

.what-next {
    max-width: 320px;
    margin: 0 auto;
}
.what-next-header {
    padding: 0 20px;
    justify-content: center;
    align-items: center;
}
.what-next-header .wn-header {
    color: #c35683;
    background-color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    line-height: 16px;
    font-family: "OpenSans-bold";
    font-size: 14px;
}
.what-next-header .wn-image {
}
.what-next-header .wn-image img {
    max-width: 100px;
}
.wn-content .reverse-col-odd {
    flex-direction: row-reverse;
}
.event-show-event-list h3 {
    word-wrap: break-word;
}
#card-element {
    border: 1px solid #c5c5c8;
}
.investor-buttons .pi-btn-wrap {
    min-width: 280px;
    margin-bottom: 30px;
}
.investor-buttons .pi-btn-wrap a {
    display: block;
}
.pi-list-icon {
    width: auto;
    height: 80px;
    text-align: center;
}
.pi-list-icon img {
	width: 70px;
}
.btn.investor-search {
    border-radius: 0;
    background: #732cd0;
}
.btn.investor-longlist {
    border-radius: 0;
    background: #ff7459;
}
.btn.investor-search:hover {
    color: #ffff;
    background: #000;
    border: 2px solid #000;
}
.btn.investor-longlist:hover {
    color: #ffff;
    background: #000;
    border: 2px solid #000;
}

.longlist-wrap {
    overflow-x: auto;
}
.longlist-wrap table {
    border-collapse: collapse;
    width: 100%;
    min-width: 1800px;
}

.longlist-wrap tr:not(:last-child) {
    border-bottom: 1px solid #ffbbae;
}

.longlist-wrap th {
    padding-bottom: 20px;
    text-align: left;
    padding-right: 10px;
    vertical-align: top;
}

.longlist-wrap tr td {
    text-align: left;
    padding: 10px 10px 10px 0;
}
.longlist-wrap tr td:last-child {
    padding-right: 0;
}
.longlist-wrap tr td a {
    color: #4c8fd3;
}
.longlist-wrap tr:last-child td {
    padding-bottom: 0;
}
.long-list-status {
    margin-bottom: 10px;
    line-height: 18px;
}
.long-list-status label {
    padding: 5px 10px;
    background: #ff7459;
    color: #fff;
    display: inline-block;
    border: 1px solid #ff7459;
    margin-right: 10px;
    width: 50%;
    min-width: 450px;
}
.long-list-status .ll-st-val {
    border: 1px solid #ff7459;
    padding: 5px 10px;
    min-width: 50px;
    font-size: 14px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.long-list-status.not_approached label {
    background: #7f7f7f;
    border: 1px solid #7f7f7f;
}
.long-list-status.not_approached .ll-st-val {
    border: 1px solid #7f7f7f;
}

.longlist-wrap .mail-link {
    background: #ff7459;
    height: 35px;
    display: block;
    line-height: 35px;
    text-align: center;
    padding: 0 5px;
}
.longlist-wrap a.mail-link {
    color: #fff;
}
.longlist-wrap .delete-form input {
    border: none;
    background: #000;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-top: 5px;
    padding: 0 5px;
    cursor: pointer;
    width: 100%;
    padding: 0 5px;
    font-size: 16px;
}

.longlist-wrap .edit-link {
    background: #c3568c;
    height: 35px;
    display: block;
    line-height: 35px;
    text-align: center;
    color: white;
    margin-top: 5px;
    padding: 0 5px;
}
.longlist-wrap .badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #FFF;
}
.longlist-wrap .badge-primary {
    background-color: #ff7459;
}
.longlist-wrap .badge-secondary {
    background-color: #000;
}
.investors-results .investor-list {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #000;
}

.investors-results .investor-list .investor-company-name {
    font-size: 18px;
    font-family: "OpenSans-semibold";
}

.investors-results .investor-list .investor_view_link {
    margin-top: 20px;
    background-color: #6a28d9;
    color: #fff;
    padding: 5px 20px;
    cursor: pointer;
    display: inline-block;
}
.investors-results .investor-list .investor_view_link.recently-viewed {
    background-color: #ff7459;
}

.investor-details {
}
.investor-details .col-75 {
    padding-left: 0 !important;
}
.investor-details .col-25 {
    padding-left: 20px;
}
.investor-details .investor-c-name {
    font-size: 22px;
    font-family: "OpenSans-semibold";
}
.investor-details .investor-c-text {
}
.investor-details .investor-c-text .header-label {
    font-size: 18px;
    font-family: "OpenSans-semibold";
}
.investor-details .investor-c-info {
}
.investor-details .investor-c-info .header-label {
    font-family: "OpenSans-semibold";
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #6a28d9;
}
.investor-add-form {
}
.investor-details .add-to-longlist {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    background-color: transparent;
    border: none;
    color: #6a28d9;
    padding-left: 40px;
    height: 30px;
}

.investor-details .add-to-longlist:before {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #6a28d9;
    background-repeat: no-repeat;
    background-image: url("../images/plus-icon.svg");
    background-position: center center;
    background-size: 15px auto;
}
.investor-details .add-to-longlist.added-to-ll:before{
    background-image: url("../images/star-white.svg");
}
select.multi_select_normal {
    height: auto;
    background: none;
    padding: 10px;
}
.investors_filter-label {
	text-align: center;
	background: #eeeeee;
	padding: 5px 10px;
	margin-right: 10px;
	font-size: 12px;
	font-family: "Open Sans";
	color: #474d57;
	margin-bottom: 10px;
	display: inline-block;
	vertical-align: middle;
}
.investor-print {
    color: #c5c5c8;
    cursor: pointer;
}
.ind-selected {
    text-align: center;
	background: #eeeeee;
	padding: 5px 10px;
	font-size: 12px;
	font-family: "Open Sans";
	color: #474d57;
	margin-top: 10px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
}
.ind-selected span {
    padding: 0 5px 0 10px;
    cursor: pointer;
}

.ac-loader {
    border: 4px solid #c5c5c8;
    border-radius: 50%;
    border-top: 4px solid #6a28d9;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    right: 10px;
    top: 10px;
    display: none;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.html5_video {
	width: 100%;
	height: auto;
}
.video-container {
	/*
	height: 350px;
	position: relative;
	*/
}
.video-container .html5_video {
	/*
	width: 100%;
	height: 100%;
	object-fit: cover;
	*/
}
.bgcover {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}