:root {
    --purple: #5A0762;
    --green: #66AF04;
    --text-color: #0c0e1e;
    --pink: #9f1f83;
}
body {
    font-family: Roboto, sans-serif;
    background: #f5f5f5;
    font-size: 14px;
}
a,a:hover,a:active {
    text-decoration: none;
}

/**** Login Page ****/
.loginPage {
    background: url(../img/login-bg.png) no-repeat top center;
    background-size: cover;
    display: flex;
    min-height: 80vh;
    align-items: center;
    justify-content: center;
}
.loginPage::before {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #fff;
    opacity: 0.45;
}
#loginPageWrapper {
    display: flex;
    flex-direction: column;
    width:100%;
    max-width: 579px;
    position: relative;
    z-index: 2;
}
#loginPageWrapper .logo img {
    margin:0 auto;
    display: block;
    width:100%;
    max-width: 326px;
}
#loginPageWrapper .loginBox {
    width: 100%;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(69, 3, 75, 0.25);
    max-width: 579px;
    padding:47px 30px 140px 47px;
    border-radius: 10px;
}
#loginPageWrapper .loginBox .title {
    font-weight: bold;
    font-size: 32px;
    line-height: 43px;
    color: var(--text-color);
    margin-bottom: 19px;
}
#loginPageWrapper .loginBox .subTitle {
    margin-top:-10px;
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 26px;
    color: #3d4052;
    
}
#loginPageWrapper #loginForm label {
    font-size: 14px;
    line-height: 19px;
    color: #3d4052;
}
#loginPageWrapper #loginForm input.form-control {
    border-color: #B4B6BF;
    border-radius: 8px;
}
#loginPageWrapper #loginForm .formFooter {
    display: flex;
    align-items: center;
}
#loginPageWrapper #loginForm .formFooter a {
    text-decoration: underline;
    font-size: 14px;
    line-height: 19px;
    color: var(--text-color);
}
#loginPageWrapper #loginForm .formFooter button {
    margin-left: auto;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #f2f2f2;
    width: 154px;
    height: 40px;
    border-radius: 20px;
    background: linear-gradient(var(--pink) 0%, var(--purple) 100%);
    border:0;
}
.return-login {
    background-color: var(--white)
}

/**** Default pages ****/
#header {
    border-top: 6px var(--purple) solid;
    background: #fff;
    box-shadow: 0px 3px 12px rgba(69, 3, 75, 0.25);
    z-index: 2;
    position: relative;
}
#header .navbar-brand img {
    max-width: 108px;
}
#header .nav-link {
    color: var(--purple);
    border-bottom:6px transparent solid;
    padding-left: 14px;
    padding-right: 14px;
}
#header .nav-item {
    margin-right: 6px;
}
#header .nav-item.active .nav-link {
    font-weight: 700;
    border-bottom-color:var(--green);
}
#navbarTop {
    align-self: flex-end;
}
.profileMenuBtnDiv {
    margin-left: 40px;
}
#profileMenu {
    position: absolute;
    top:100%;
    right:-49px;
    z-index:20;
    width:166px;
    height:144px;
    padding-top: 12px;
    display: none;
}
#profileMenu.active {
    display: block;
}
#profileMenu ul {
    background:#fff;
    margin:0;
    padding:0;
    width: 100%;
    height: 132px;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0px 3px 12px rgba(69, 3, 75, 0.25);
    position: relative;
    padding: 20px 14px 15px 15px;
}
#profileMenu ul:before {
    content:"";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.5px 12.5px 6.5px;
    border-color: transparent transparent #ffffff transparent;
    top:-12px;
    left: calc( 50% - 6.5px );
}
#profileMenu ul li {
    padding:0;
    list-style: none;
}
#profileMenu ul li + li {
    margin-top: 11px;
}
#profileMenu ul li a {
    display: flex;
    width:100%;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}
#profileMenu ul li a span {
    color:var(--pink);
    font-size: 24px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 11px;
    text-align: center;
}
#profileMenu ul li a span.icon-user {
    font-size: 17.24px;
    padding-top: 3px;
}

.btn {
    font-family: Roboto;
    width: 138px;
    height: 36px;
    font-size: 14px;
    border-radius: 18px;
    background: linear-gradient(var(--pink) 0%, var(--purple) 100%);
    font-family: Roboto;
    font-weight: normal;
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
    outline: unset !important;
}
.btn:hover {
    color: #fff;
}
.btn-icon {
    width: 36px;
    height: 36px;
    background: var(--purple);
    font-size: 17.24px;
    color:#fff;
    border-radius: 50%;
    display: inline-block;
    line-height: 36px;
    text-align: center;
    margin-bottom: 5px;
    outline: unset !important;
    text-decoration: none;
}
.btn-icon:hover {
    color:#fff;
    text-decoration: none;
}
.ml-40 {
    margin-left: 40px;
}
#content {
    padding-top: 15px;
}
.contentHeader {
    display: flex;
    align-items: center;
    padding-left: 16px;
    padding: 13px 0;
}
.welcomeTitle {
    font-weight: bold;
    font-size: 27px;
    line-height: 35px;
    text-align: left;
    color: var(--green);
}
.searchForm {
    margin-left: auto;
}
.searchForm form {
    display: flex;
}
.searchForm input {
    width: 199px;
    height: 36px;
    border-radius: 18px;
    background: #ffffff url(../img/font-icons/search.svg) no-repeat center right 20px;
    border: 1px solid #070707;
    font-family: Roboto;
    font-weight: normal;
    font-size: 12px;
    color: #070707;
    padding:10px 20px;
    outline: unset !important;
}
.searchForm button {
    margin-left: 12px;
}
.whiteBox {
    background: #fff;
    padding:16px 0 0 6px;
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0px 3px 12px rgba(69, 3, 75, 0.25);
}
.whiteBox .boxTitle {
    font-weight: bold;
    font-size: 32px;
    color: var(--text-color);
    line-height: 43px;
    padding-left: 15px;
}
.questionList .questionBox,
.questionList .blogBox {
    padding:15px 30px 10px 14px
}
.questionList .questionBox + .questionBox,
.questionList .blogBox + .blogBox {
    border-top: 1px solid #d2d5db;
}
.questionList .titleRow {
    display: flex;
    align-items: center;
}
.questionList .titleRow .question,
.questionList .titleRow .question a {
    font-weight: bold;
    font-size: 20px;
    color: var(--pink);
}
.questionList .titleRow .question .icons {
    display: inline-block;
    margin-left: 22px;
}
.questionList .titleRow .question .icons a {
    font-size: 24px;
    line-height: 24px;
    width: 24px;
    height: 24px;
    display: inline-block;
}
.questionList .titleRow .question .icons a > span {
    line-height: 24px;
    width: 24px;
    height: 24px;
}
.questionList .titleRow .question .icons a + a {
    margin-left: 10px;
}
.questionList .titleRow .tags {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}
.questionList .titleRow .tags a {
    color: #3c4655;
    padding:1px 10px;
    line-height: 19px;
    border-radius: 10.5px;
    background: #e5e6e8;
}
.questionList .titleRow .tags a + a {
    margin-left: 11px;
}
.questionList .userRow {
    margin-top: 8px;
}
.questionList .userRow a {
    display: flex;
    color: var(--text-color);
    text-decoration: none !important;
}
.questionList .userRow a span {
    width: 20px;
    height: 20px;
    background: #707070;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    color: #fff;
    margin-right: 6px;
}
.questionList .questionShortDesc {
    margin-top: 16px;
    line-height: 19px;
}
.questionList .userRow + .questionShortDesc {
    margin-top: 7px;
}
.questionList .footerRow {
    margin-top: 12px;
    display: flex;
    align-items: center;
}
.questionList .footerRow .postCommentBtn a {
    width: 128px;
    height: 32px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    margin-right: 7px;
    line-height: 18px;
}
.questionList .footerRow .likes a {
    line-height: 16px;
    display: flex;
    font-weight: 700;
    height: 31px;
    border-radius: 15.5px;
    background: #f1f2f4;
    min-width: 78px;
    padding:8px 12px 7px 12px;
    display: flex;
    height: 100%;
    color: var(--text-color);
    align-items: center;
    text-decoration: none !important;
}
.questionList .footerRow .likes span {
    font-size: 15px;
    color: var(--purple);
    margin-right: 7px;
}
.questionList .footerRow .likes label {
    margin-bottom: 0;
    pointer-events: none;
}
.questionList .footerRow .star {
    margin-left: 13px;
}
.questionList .footerRow .star a {
    color: var(--purple);
    font-size: 19px;
    text-decoration: none !important;
}
.questionList .footerRow .comments {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.questionList .footerRow .comments span {
    color: var(--purple);
    font-size: 19px;
    margin-right: 10px;
}
.questionList .footerRow .comments a {
    color: #5a5d6c;
}
.questionList .footerRow .followings {
    margin-left: 28px;
    display: flex;
    align-items: center;
}
.questionList .footerRow .followings span {
    color: var(--purple);
    font-size: 19px;
    margin-right: 5px;
}
.questionList .footerRow .followings a {
    color: #5a5d6c;
}
.questionList .footerRow .comments em,
.questionList .footerRow .followings em {
    font-style: normal;
}
.questionList .blogBox {
    display: flex;
}
.questionList .blogImg {
    width: 178px;
    margin-right: 28px;
    flex-shrink: 0;
}
.questionList .blogImg img {
    display: block;
    width: 100%;
    max-width: 178px;
}
.questionList .blogText .date {
    font-size: 12px;
    color: #5a5d6c;
}
.moreButtonArea {
    text-align: center;
    height: 41px;
    margin-bottom: 36px;
}
.moreButtonArea .moreButton {
    width: 199px;
    border-radius: 20px;
    background: #e8eaed;
    text-align: center;
    color: #3d4052;
    padding:11px 0;
    line-height: 19px;
    position: relative;
    display: block;
    margin:0 auto;
}
.moreButtonArea .moreButton span {
    font-size: 11px;
    position: absolute;
    top: 16.7px;
    right: 23.6px;
}
#sidebar {}
#sidebar .whiteBox {
    border-radius: 9px;
    color: var(--text-color);
    margin-bottom: 14px;
}
#sidebar #myEngagements.whiteBox {
    background: var(--purple);
    color: #fff;
    padding: 13px 15.5px 21px;
}
#sidebar .whiteBox .boxTitle {
    font-size: 20px;
    margin:0;
    line-height: 26px;
}
#sidebar #myEngagements.whiteBox .boxTitle {
    color: #fff;
    padding-left: 3px;
}
#sidebar #myEngagements .total {
    padding:19px 0 25px 5px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d2d5db;
}
#sidebar #myEngagements .total .icon {
    background-color: rgba(230, 218, 231, 0.40);
    border-radius: 50%;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
}
#sidebar #myEngagements .total .icon span {
    font-size: 29px;
}
#sidebar #myEngagements .count {
    display: flex;
    align-items: center;
}
#sidebar #myEngagements .total .count {
    padding-left: 12px;
    align-items: flex-end;
}
#sidebar #myEngagements .count .number {
    font-weight: bold;
    font-size: 32px;
    color: var(--green);
    padding-right: 8px; 
}
#sidebar #myEngagements .total .count .number {
    font-size: 48px;
    line-height: 46px;
}
#sidebar #myEngagements .count .text {
    color: #f2f2f2;    
}
#sidebar #myEngagements .count + .count {
    padding-left: 12px;
}
#sidebar #myEngagements .other {
    display: flex;
    padding: 20px 0 0 0;
}
#sidebar #sidebarTopics.whiteBox {
    padding:18px 12px 8px;
}
#sidebarTopics .topicList {
    display: flex;
    flex-wrap: wrap;
}
#sidebarTopics .topicList .topic {
    margin:0 6px 12px;
    background: #e6dae7;
    border-radius: 12.5px;
    min-width: 103px;
    min-height: 25px;
    text-align: center;
    padding:0 5px;
    color: var(--purple);
}
#sidebar #highestEngagements.whiteBox {
    padding:16px 15.5px 15px;
}
#sidebar #highestEngagements.whiteBox .boxTitle {
    padding-left:0;
}
.engagementTable .engagementBox {
    display: flex;
    padding-top: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.engagementTable .engagementBox + .engagementBox {
    border-top: 1px solid #d2d5db;
}
.engagementTable .engagementBox .icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--purple);
}
.engagementTable .engagementBox:nth-child(even) .icon {
    background: #707070;
}
.engagementTable .engagementBox .icon span {
    font-size: 18.14px;
    color: #fff;
}
.engagementTable .engagementBox .count {
    padding-left: 9px;
}
.engagementTable .engagementBox .count .number {
    font-weight: bold;
    font-size: 28px;
    color: var(--pink);
    line-height: 28px;
}
.engagementTable .engagementBox .count .text {
    color: var(--text-color);
}
.engagementTable .engagementBox .order {
    margin-left: auto;
    color: #3d4052;
    font-weight: 700;
    padding-right: 8px;
}
.engagementTable .engagementBox .cup {
    padding-right: 8px;
}
.engagementTable .engagementBox .cup img {
    width: 29.33px;
}
#footer {
    padding:110px 0 20px 0;
    background: #fff;
}
.footerLogo {
    margin-bottom: 0;
}
.footerLogo img {
    display: block;
}
.footerDesc {
    line-height: 18px;
    color: #5a5d6c;
}
.footerLinks {
    margin:0 0 0 auto;
    padding:0 0 30px 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.footerLinks li {
    list-style: none;
    margin-top: auto;
    padding: 0 9px;
}
.footerLinks li + li {
    border-left: 1px var(--purple) solid;
}
.footerLinks li a {
    font-weight: bold;
    font-size: 20px;
    color: var(--pink);
    line-height: 24px;
}

#copyright {
    background: var(--purple);
    padding:23px 0;
}
.copyrightText {
    color: #fff;
    line-height: 18px;
}
.copyrightLinks {
    margin-left: auto;
    padding-right: 45px;
}
.copyrightLinks a {
    color: #fff;
    display: inline-block;
}
.copyrightLinks a + a {
    margin-left: 28px;
}
#mobileSidebar {
    position: absolute;
    right:0;
    top:270px;
    display: none;
    padding:0 0 10px 10px;
}
#mobileSidebar .sideBox {
    position: relative;
}
#mobileSidebar .showSideBoxBtn {
    margin-bottom: 7px;
}
#mobileSidebar .showSideBoxBtn a {
    margin-left: auto;
    display: block;
    width: 108px;
    min-height: 40px;
    border-radius: 9px 0px 0px 9px;
    background: #fff;
    box-shadow: 0px 3px 15px rgba(69, 3, 75, 0.25);
    padding: 10px 13px;
    color:var(--purple);
}
#mobileSidebar .showSideBoxBtn a.my {
    background-color: var(--purple);
    color: #fff;
}
#mobileSidebar .showSideBoxBtn.hide {
    display: none;
}
#mobileSidebar .whiteBox {
    width: 375px;
    margin-bottom: 7px;
    border-radius: 9px 0px 0px 9px;
    padding: 15px 23px 0 23px;
    position: absolute;
    top:0;
    right:-400px;
    transform: all 0.4s ease;
}
#mobileSidebar .whiteBox.show {
    right: 0;
    position: relative;
}
#mobileSidebar .whiteBox#myEngagementsMobile {
    background: var(--purple);
    color: #fff;
    padding-bottom: 23px;
}
#mobileSidebar .whiteBox .boxTitle {
    padding-left: 0;
    font-size: 18px;
    color: var(--purple);
}
#mobileSidebar .whiteBox#myEngagementsMobile .boxTitle {
    color: #f2f2f2;
}
#myEngagementsMobile .numbers {
    display: flex;
    align-items: center;
}
#myEngagementsMobile .numbers .count {
    display: flex;
    align-items: center;
}
#myEngagementsMobile .numbers .count + .count {
    border-left: 1px #D2D5DB solid;
    margin-left: 9px;
    padding-left: 9px;
}
#myEngagementsMobile .numbers .count .number {
    font-weight: bold;
    font-size: 24px;
    color: var(--green);
    margin-right: 8px;
}
#myEngagementsMobile .numbers .count .text {
    font-size: 12px;
    color: #f2f2f2;
}
#mobileSidebar .whiteBox#sidebarTopicsMobile {
    padding-left: 14px;
    padding-right: 14px;
}
#mobileSidebar .whiteBox#sidebarTopicsMobile .boxTitle {
    margin-bottom: 10px;
}
#sidebarTopicsMobile .topicList {
    display: flex;
    flex-wrap: wrap;
}
#sidebarTopicsMobile .topicList .topic {
    margin:0 6px 12px;
    background: #e6dae7;
    border-radius: 12.5px;
    min-width: 103px;
    min-height: 35px;
    text-align: center;
    padding:8px 8px;
    line-height: 19px;
    color: var(--purple);
}
#highestEngagementsMobile .engagementTable {
    display: flex;
}
#highestEngagementsMobile .engagementBox {
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
    padding-top: 0;
}
#highestEngagementsMobile .engagementBox + .engagementBox {
    border-top: 0;
    border-left: 1px solid #d2d5db;
    padding-left: 10px;
}
#highestEngagementsMobile .engagementTable .engagementBox .order {
    margin-left: 0;
    font-size: 12px;
    line-height: 16px;
}
#highestEngagementsMobile .engagementTable .engagementBox .count {
    padding-left: 0;
}
#highestEngagementsMobile .engagementTable .engagementBox .count .number {
    font-size: 24px;
    line-height: 26px;
}
#highestEngagementsMobile .engagementTable .engagementBox .count .text {
    font-size: 12px;
}
.navbar-toggler {
    padding-left: 0;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2890, 7, 98, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.modal-content {
    border:0;
}
.modal-header {
    border-bottom: 0;
    padding:30px 30px 0;
}
.modal-title {
    font-weight: bold;
    font-size: 32px;
    color: var(--pink);
}
.modal-title span {
    font-size: 18px;
    color: #5a5d6c;
    display: block;
    line-height: 24px;
}
.modal-body {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
    padding: 1rem 30px;
}
.modal-footer {
    border-top: 0;
    padding:0 30px 30px;
}
.questionsButtons {
    display: flex;
    width: 100%;
    padding:0 13px 7px;
    border-bottom: 1px solid #dadada;
    margin-bottom: 16px;
}
.questionsButtons a {
    display: inline-block;
    white-space: nowrap;
    border-radius: 15.5px;
    background: #e1e3e6;
    padding:6px 14px;
    font-weight: normal;
    font-size: 14px;
    color: #3d4052;
    line-height: 19px;
    text-decoration: none;
    margin-bottom: 10px;
    margin-right: 10px;
}
.questionsButtons a.active {
    background-color: #66AF04;
    color: #fff;
}
#paginate {
    padding-top: 20px;
    padding-bottom: 15px;
}
#paginate .pageList {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    flex-wrap: wrap;
}
#paginate .pageList .pageLink {
    font-weight: normal;
    font-size: 12px;
    line-height: 24px;
    text-align: left;
    color: #3d4052;
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin:0 2px;
    text-decoration: none;
    flex-shrink: 0;
    flex-grow: 0;
}
#paginate .pageList .pageLink.active {
    font-weight: 700;
    color: #fff;
    background: var(--purple);
}
#paginate .pageList .pageLink span[class^="icon-"] {
    font-size: 7px;
}
.searchTitle {
    font-weight: bold;
    font-size: 32px;
    line-height: 43px;
    color: var(--text-color);
    margin-bottom: 18px;
}
#mobileMenuBG {
    position: fixed;
    z-index:3;
    width: 100vw;
    height: 100vh;
    background: transparent;
    /* Note: currently only Safari supports backdrop-filter */
    backdrop-filter: blur(21.719200134277344px);
    --webkit-backdrop-filter: blur(21.719200134277344px);
    background-color: rgba(255, 255, 255, 0.15);
    /* (plus shape's fill blended on top as a separate layer with 20.2% opacity) */
    display: none;
}
#mobileMenu {
    position: fixed;
    z-index: 4;
    width:234px;
    height: 100vh;
    background:#fff;
    display: none;
}
#mobileMenuBG.active,
#mobileMenu.active {
    display: none;
}
#mobileMenuWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 39px 38px 20px 38px;
}
.mobileMenuCloseBtn {
    font-size: 12px;
    padding: 5px;
    display: inline-block;
    margin-bottom: 37px;
}
#mobileMenu .navbar-nav .nav-item {
    padding: 0px;
    margin-bottom: 20px;
}
#mobileMenu .navbar-nav .nav-link {
    font-weight: 400;
    font-size: 24px;
    color: var(--purple);
    line-height: 32px;
    padding:0;
}
#mobileMenu .navbar-nav .nav-link.dropdown {
    display: flex;
}
#mobileMenu .navbar-nav .nav-link.dropdown span {
    color:  #4b4c68;
    font-size: 12px;
    padding-top: 10px;
    margin-left: auto;
}
#mobileMenu .navbar-nav .nav-link.dropdown span:before {
    transform:rotate(90deg);
    display: inline-block;
}
#mobileMenu .navbar-nav .show .nav-link.dropdown span {
    transform:rotate(180deg);
}
#mobileMenu .navbar-nav .dropdown-menu {
    border:0;
    padding: 13px 0 0 0;
    margin: 0;
}
#mobileMenu .navbar-nav .dropdown-item {
    padding:0;
    font-size: 18px;
    line-height: 24px;
    color: var(--purple);
    margin-bottom: 13px;
}
#askQuestionPopupForm {}
#askQuestionPopupForm input, #askQuestionPopupForm select {
    border:0;
    border-radius: 0;
    border-bottom: 1px solid #d2d5db;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 18px;
    color:#777a88;
}
#askQuestionPopupForm select {
    padding-left: 10px;
    padding-right: 10px;
}
#askQuestionPopupForm textarea {
    border: 1px solid #d2d5db;
    color:#777a88;
    border-radius: 8px;
    resize: none;
    min-height: 224px;
}
#askQuestionPopupForm .formFooter {
    display: flex;
    padding-top: 10px;
    align-items: center;
}
#askQuestionPopupForm .formAttach {
    position: relative;
    order:1;
}
#askQuestionPopupForm .formAttach input {
    position: absolute;
    width:100%;
    opacity: 0;
    padding:0;
    border:0;
    margin:0;
    height: 100%;
}
#askQuestionPopupForm .formAttach a {
    color: var(--purple);
    display: flex;
    align-items: center;
    line-height: 24px;
}
#askQuestionPopupForm .formAttach a span {
    font-size: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    margin-right: 5px;
}
#askQuestionPopupForm .formFooterText {
    margin-left: auto;
    color: var(--purple);
    opacity: 0.65;
    padding-right: 19px;
    order:2;
    font-weight: 700;
    font-style: italic;
}
#askQuestionPopupForm .formSubmit {
    order:3;
}
#askQuestionPopupForm .formSubmit button {
    margin-bottom: 0;
}
.modalCloseBtn {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    top: -40px;
    z-index: 1051;
    font-size: 20px;
    line-height: 20px;
}
.modalCloseBtn span:before {
    color:#fff;
}
#questionDetail {
    background: #fff;
    box-shadow: 0px 3px 6px rgba(69, 3, 75, 0.25);
    padding-top: 20px;
    padding-bottom: 20px;
}
#questionDetail .questionList .star a {
    color: var(--purple);
    font-size: 19px;
    text-decoration: none !important;
}
#commentEditor {
    padding-left: 10px;
    padding-right: 20px;
}
.editorHeader {
    border-bottom:1px #D2D5DB solid;
}
.editorHeader .editorButton {}
.editorTextarea {
    padding:18px 0;
}
.editorTextarea textarea {
    display: block;
    width:100%;
    height:130px;
    border:0;
    outline: 0;
    resize: none;
}
.editorFooter {
    display: flex;
    padding-top: 10px;
    align-items: center;
    padding-bottom: 20px;
}
.editorFooter .editorAttach {
    position: relative;
    order:1;
    min-width:100px;
}
.editorFooter .editorAttach input {
    position: absolute;
    width:100%;
    opacity: 0;
    padding:0;
    border:0;
    margin:0;
    height: 100%;
}
.editorFooter .editorAttach a {
    color: var(--purple);
    display: flex;
    align-items: center;
    line-height: 24px;
}
.editorFooter .editorAttach a span {
    font-size: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    margin-right: 5px;
}
.editorFooter .text {
    margin-left: auto;
    color: var(--purple);
    opacity: 0.65;
    padding-right: 10px;
    order:2;
    text-align: right;
    font-weight: 700;
    font-style: italic;
}
.editorFooter .submitButton {
    order:3;
}
.editorFooter .submitButton button {
    margin-bottom: 0;
}
#commentList {
    padding:6px 0 0 0;
}
#commentList .commentBox {
    padding:15px 14px 0;
}
#commentList .commentBox .userInfo {
    display: flex;
    align-items: center;
}
#commentList .commentBox .userInfo .icon-user {
    background: #707070;
    border-radius: 50%;
    width: 28px;
    height:28px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    margin-right: 6px;
}
#commentList .commentBox .userInfo .userName {
    font-weight: bold;
    font-size: 20px;
    color: #0c0e1e;
}
#commentList .commentBox .userInfo .icons {
    display: inline-block;
    margin-left: auto;
}
#commentList .commentBox .userInfo .icons a {
    font-size: 24px;
    line-height: 24px;
    width: 24px;
    height: 24px;
    display: inline-block;
}
#commentList .commentBox .userInfo .icons a > span {
    line-height: 24px;
    width: 24px;
    height: 24px;
}
#commentList .commentBox .userInfo .icons a + a {
    margin-left: 10px;
}
#commentList .commentBox .commentDate {
    font-size: 12px;
    line-height: 18px;
    color: #5a5d6c;
    padding-left: 16px; 
    padding-top: 10px;
}
#commentList .commentBox .comment {
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    color: #0c0e1e;
    padding: 10px 0 13px 16px;
    line-height: 21px;
}
#commentList .commentBox .comment p {
    margin-bottom:20px;
}
#commentList .commentBox .commentMeta {
    padding: 0 37px 16px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d2d5db;
}
#commentList .commentBox .commentMeta .likes {}
#commentList .commentBox .commentMeta .likes a {
    line-height: 16px;
    display: flex;
    font-weight: 700;
    height: 31px;
    border-radius: 15.5px;
    background: #f1f2f4;
    min-width: 78px;
    padding: 8px 12px 7px 12px;
    display: flex;
    height: 100%;
    color: var(--text-color);
    align-items: center;
    text-decoration: none !important;
}
#commentList .commentBox .commentMeta .likes a span {
    font-size: 15px;
    color: var(--purple);
    margin-right: 7px;
}
#commentList .commentBox .commentMeta .likes a label {
    margin-bottom: 0;
    pointer-events: none;
}
#commentList .commentBox .commentMeta .replyBtn {
    margin-left: 16px;
}
#commentList .commentBox .commentMeta .replyBtn a {
    width: 110px;
    height: 31px;
    background: #7a9a32;
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    color: #fff;
    display: block;
    line-height: 31px;
    border-radius: 15px;
}
#commentList .commentBox .commentMeta .comments {
    margin-left: auto;
    display: flex;
    align-items: center;
}
#commentList .commentBox .commentMeta .comments span {
    color: var(--purple);
    font-size: 19px;
    margin-right: 10px;
}
#commentList .commentBox .commentMeta .comments a {
    color: #5a5d6c;
}
#commentList .commentBox .commentMeta .comments a em {
    font-style: normal;
}
#commentList .commentBox:last-child .commentMeta {
    border-bottom: 0;
}
#commentList .commentBox.subComment1 {
    margin-left: 30px;
}
#commentList .commentBox.subComment2 {
    margin-left: 60px;
}
#commentList .commentBox.subComment3 {
    margin-left: 90px;
}
.relatedQuestionList {
    padding:19px 20px 10px 15px;
}
.relatedQuestionList > div {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 16px;
}
.relatedQuestionList > div a {
    color: #5a0762;
    text-decoration: underline;
}
#contactUs {
    padding:46px 43px 50px 43px
}
.whiteBox#contactUs .boxTitle {
    padding-left: 0;
    margin-bottom: 30px;
}
.contactForm .form-group {
    margin-bottom: 24px;
    position: relative;
}
.contactForm .form-group input,
.contactForm .form-group textarea {
    border-radius: 8px;
    border: 1px solid #d2d5db;
    font-size: 14px;
    line-height: 18px;
    color: #777a88;
    padding:10px;
    height: 40px;
}
.contactForm .form-group textarea {
    height: 308px;
    resize: none;
}
.contactForm .form-group span[class^="icon-"] {
    position: absolute;
    color:#777A88;
}
.contactForm .form-group span.icon-email-form {
    font-size: 15px;
    top: 14px;
    right: 14px;
}
.contactForm .form-group span.icon-user-form {
    font-size: 24px;
    top: 8px;
    right: 10px;
}
.contactForm .btn {
    width: 188px;
    letter-spacing: 0.01em;
    line-height: 18px;
    color: #f2f2f2;
    border:0;
}
.addressBox {
    padding-bottom: 21px;
}
.addressLine {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}
.addressLine span {
    width: 24px;
    text-align: center;
    margin-right: 9px;
    color: var(--pink);
    font-size: 24px;
    margin-top: 2px;
}
.addressLine .text {
    font-size: 20px;
    line-height: 24px;
    color: var(--text-color);
}
#userDetailBox {
    padding:24px 20px;
}
#userDetailBox .userLinks {
    margin-bottom: 28px;
}
#userDetailBox .userLinks select {
    width:100%;
    max-width: 334px;
    height: 36px;
    border-radius: 18px;
    background: #e8eaed;
    border:0;
    font-family: Roboto;
    font-weight: 900;
    font-size: 14px;
    text-align: left;
    color: #3d4052;
    padding: 8px 20px 9px;
    display: none;
}
#userDetailBox .userLinks a {
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #3d4052;
    padding-bottom: 5px;
    display: inline-block;
}
#userDetailBox .userLinks a.active {
    font-weight: bold;
    color: var(--text-color);
    border-bottom: 4px #66af04 solid;
}
#userDetailBox .userLinks a + a {
    margin-left: 36px;
}
.questionList .questionBox.commentBox {
    padding:0 0 18px 0;
}
.questionList .questionBox.commentBox .userRow a span {
    width: 28px;
    height: 28px;
    background-color: var(--purple);
    line-height: 28px;
    font-size: 14px;
}
.questionList .questionBox.commentBox .userRow a {
    font-weight: bold;
    font-size: 20px;
}
.questionList .questionBox.commentBox .userRow + .questionShortDesc {
    margin-top: 18px;
}
#userDetail {
    width: 100%;
    background: var(--purple);
    margin-bottom: 14px;
    padding: 26px 0 0 0;
    display: flex;
    color: #f2f2f2;
}
#userDetail .userIcon {
    width: 153px;
    flex-shrink: 0;
    flex-grow: 0;
    text-align: center;
}
#userDetail .userIcon > div {
    width: 96px;
    height: 96px;
    margin:0 auto;
    background-color: #925b97;
    border-radius: 50%;
    line-height: 96px;
    font-size: 44px;
}
#userDetail .userText {
    flex-grow: 1;
}
#userDetail .userText .userName {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 9px;
}
#userDetail .userText .userDesc {
    height: 53px;
    font-size: 16px;
    overflow: hidden;
    margin-right: 40px;
    margin-bottom: 9px;
}
#userDetail .userText .followButton a {
    display: block;
    width: 138px;
    height: 36px;
    border-radius: 18px;
    background: var(--green);
    border: 1px solid #707070;
    font-size: 14px;
    text-align: center;
    color: #fff;
    line-height: 36px;
    margin-bottom: 26px;
}
.questionList .statusRow {
    padding-bottom: 11px;
    font-size: 16px;
    color: #6c6c6c;
    line-height: 21px;
}
.questionList .statusRow .status {
    color: var(--purple);
}
#blogMostPopular {
    background:#fff;
    padding-top: 36px;
    padding-bottom: 23px;
}
#blogMostPopular .sectionTitle {
    font-weight: bold;
    font-size: 32px;
    color: var(--text-color);
}
#blogMostPopular .blogItem {
    margin-bottom: 20px;
}
#blogMostPopular .blogItem .img {
    overflow: hidden;
    height: 162px;
    border-radius: 14px;
    margin-bottom: 14px;
}
#blogMostPopular .blogItem .img img {
    width: 100%;
    display: block;
}
#blogMostPopular .blogItem .date {
    font-size: 12px;
    line-height: 24px;
    color: #5a5d6c;
    margin-bottom: 4px;
}
#blogMostPopular .blogItem .link {}
#blogMostPopular .blogItem .link a {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: var(--pink);    
}
#blogDetail {
    padding:33px 45px 37px;
}
.blogDetailImage {
    margin-bottom: 45px;
}
.blogDetailImage img {
    display: block;
    width: 100%;
    border-radius: 10px;
}
.blogDetailMeta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.blogDetailMeta .date {
    font-size: 14px;
    color: #5a5d6c;    
}
.blogDetailMeta .tags {
    margin-left: auto;
}
.blogDetailMeta .tags a {
    font-size: 14px;
    color: #3c4655;
    padding:1px 10px;
    border-radius: 16px;
    line-height: 19px;
    background-color: #E5E6E8;
    margin-left: 11px;
}
.blogDetailTitle {
    font-weight: bold;
    font-size: 32px;
    line-height: 42px;
    color: var(--pink);
    margin-bottom: 11px;
}
.blogDetailUserInfo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.blogDetailUserInfo .user {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    color: var(--text-color);
}
.blogDetailUserInfo .user span {
    width: 40px;
    height: 40px;
    background: var(--purple);
    border-radius: 50%;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    margin-right: 11px;
}
.blogDetailUserInfo .likes {
    margin-left: auto;
    margin-right: 22px;
}
.blogDetailUserInfo .likes a {
    line-height: 16px;
    display: flex;
    font-weight: 700;
    height: 31px;
    border-radius: 15.5px;
    background: #f1f2f4;
    min-width: 78px;
    padding:8px 12px 7px 12px;
    display: flex;
    height: 100%;
    color: var(--text-color);
    align-items: center;
    text-decoration: none !important;
}
.blogDetailUserInfo .likes a span  {
    font-size: 15px;
    color: var(--purple);
    margin-right: 7px;
}
.blogDetailUserInfo .likes a label {
    margin-bottom: 0;
    pointer-events: none;
}
.blogDetailUserInfo .comments {
    display: flex;
    align-items: center;
}
.blogDetailUserInfo .comments span {
    color: var(--purple);
    font-size: 19px;
    margin-right: 10px;
}
.blogDetailUserInfo .comments a {
    color: #5a5d6c;
}
.blogDetailUserInfo .comments a em {
    font-style: normal;
}
.blogDetailText {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: var(--text-color);
    margin-bottom: 64px;
}
.blogDetailComments .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: var(--text-color);
    margin-bottom: 13px;
}
.blogDetailComments .comment {
    display: flex;
    margin-bottom: 17px;
}
.blogDetailComments .commentUserImg {
    margin-right: 20px;
    width: 64px;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
}
.blogDetailComments .commentUserImg span {
    display: block;
    width: 64px;
    height: 64px;
    background: var(--purple);
    border-radius: 50%;
    color: #fff;
    line-height: 64px;
    font-size: 29px;
    text-align: center;
    margin-bottom: 6px;
}
.blogDetailComments .commentUserImg label {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: var(--text-color);
    word-wrap: break-all;
}
.blogDetailComments .commentText {
    flex-grow: 1;
}
.blogDetailComments .commentMeta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.blogDetailComments .commentMeta .user {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: var(--text-color);
    margin-right: 7px;
}
.blogDetailComments .commentMeta .user span {
    width: 28px;
    height: 28px;
    background: var(--purple);
    border-radius: 50%;
    color: #fff;
    line-height: 28px;
    text-align: center;
    font-size: 15.42px;
    margin-right: 13px;
    display: none;
}
.blogDetailComments .commentMeta .likes a {
    line-height: 16px;
    display: flex;
    font-weight: 700;
    height: 31px;
    border-radius: 15.5px;
    background: #f1f2f4;
    min-width: 78px;
    padding: 8px 12px 7px 12px;
    display: flex;
    height: 100%;
    color: var(--text-color);
    align-items: center;
    text-decoration: none !important;
}
.blogDetailComments .commentMeta .likes a span {
    font-size: 15px;
    color: var(--purple);
    margin-right: 7px;
}
.blogDetailComments .commentMeta .likes a label {
    margin-bottom: 0;
    pointer-events: none;
}
.blogDetailComments .commentMeta .replyBtn {
    margin-left: 16px;
}
.blogDetailComments .commentMeta .replyBtn a {
    width: 110px;
    height: 31px;
    background: #7a9a32;
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    color: #fff;
    display: block;
    line-height: 31px;
    border-radius: 15px;
}
.blogDetailComments .commentMeta .buttons {
    margin-left: auto;
    display: flex;
}
.blogDetailComments .commentMeta .buttons a {
    width:24px;
    height: 24px;
    font-size: 24px;
    margin-left: 6px;
}
.blogDetailComments .commentMeta .buttons a img {
    display: block;
}
.blogDetailComments .commentDate {
    font-size: 12px;
    line-height: 18px;
    color: #5a5d6c;
    margin-bottom: 6px;  
}
.blogDetailComments .commentText {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
}
.blogDetailComments .comment > .commentText {
    margin-bottom: 0;
}
.blogDetailComments .commentReplyBtn {}
.blogDetailComments .commentReplyBtn a {
    font-size: 24px;
    color:var(--pink);
}
.blogDetailComments .comment.replyComment {
    margin-left: 84px;
}
.blogDetailComments .comment.replyComment2 {
    margin-left: 168px;
}
.blogDetailComments .commentEditor {
    flex-grow: 1;
}
.blogDetailComments .commentEditor textarea {
    display: block;
    width: 100%;
    height: 139px;
    background: #fff;
    border: 1px solid #d2d5db;
    border-radius: 15px;
    resize: none;
    margin-bottom: 16px;
}
.blogDetailComments .commentEditor .formFooterRow {
    display: flex;
    align-items: center;
}
.blogDetailComments .commentEditor .formFooterRow .text {
    margin-left: auto;
    font-size: 14px;
    color: var(--purple);
    opacity: 0.65;
    
}
.blogDetailComments .commentEditor .formFooterRow .btn {
    margin-bottom: 0;
    width: 188px;
    height: 40px;
    margin-left: 20px;
}
.blogNav {
    display: flex;
    padding: 10px 54px 25px;
}
.blogNav em {
    text-decoration: underline;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    color: var(--purple);
    font-style: normal;
}
.blogNav span {
    color: var(--purple);
    font-size: 10px;
    margin-right: 15px;
}
.blogNav > div {
    display: flex;
    align-items: center;
}
.blogNav .next {
    margin-left: auto;
}
.blogNav .next span {
    margin: 0 0 0 15px;
}
.sortBar {
    display: flex;
    padding-bottom: 23px;
}
.sortBar .sortBy {
    margin-left: auto;
    position: relative
}
.sortBar .sortBy > a {
    display: flex;
    align-items: center;
    height: 24px;
    margin-right: 20px;
    position: relative;
    width: 90px;
    font-size: 14px;
    text-align: left;
    color: var(--purple);
    
}
.sortBar .sortBy > a span {
    font-size: 24px;
    margin-right: 6px;
}
.sortBar .sortBy > a:before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: var(--purple) transparent transparent transparent;
}
.sortBar .sortBy.opened > a:before {
    border-width: 0 5px 6px 5px;
    border-color: transparent transparent var(--purple) transparent;
}
.sortBar .sortByMenu {
    position: absolute;
    margin:0; 
    padding:0;
    width: 116px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 3px 12px rgba(69, 3, 75, 0.25);
    overflow: hidden;
    display: none;
}
.sortBar .sortBy.opened .sortByMenu {
    display: block;
}
.sortBar .sortByMenu li {
    list-style: none;
    margin:0; 
    padding:0;
}
.sortBar .sortByMenu li a {
    display: block;
    text-align: center;
    height: 42px;
    font-size: 12px;
    color: var(--text-color);
    line-height: 16px;
    padding:13px 0;
}
.sortBar .sortByMenu li a:hover {
    background-color: #f6f2f7;
}
.surveyList {}
.surveyRow {
    display: flex;
    padding-right:43px;
    margin-left: -6px;
}
.surveyRow:nth-child(odd) {
    background: #e6dae7;
}
.surveyRow .surveyName {
    padding: 16px 0 16px 39px;
    line-height: 16px;
    display: flex;
}
.surveyRow .surveyName a {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    color: #000;
}
.surveyRow.closed .surveyName a {
    font-weight: normal;
    color: #5a5d6c;
    pointer-events: none;
}
.surveyRow .surveyStatus {
    margin-left: auto;
    font-family: Roboto;
    font-weight: bold;
    font-size: 12px;
    color: var(--pink);
    width: 83px;
    padding: 16px 0;
    line-height: 16px;
    flex-shrink: 0;
}
.surveyRow.closed .surveyStatus {
    font-weight: normal;
}
.surveyRow .surveyButtons {
    width: 65px;
    padding:12px 0;
    font-size: 0;
    flex-shrink: 0;
}
.surveyRow .surveyButtons a {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: inline-block;
}
.surveyRow .surveyButtons a + a {
    margin-left: 15px;
}
.surveyRow .surveyButtons a span {
    width: 24px;
    height: 24px;
    display: block;
}
.surveyRow.closed .surveyButtons a.delete {
    opacity: 0.5;
    pointer-events: none;
}
.surveyQuestions {
    padding:0 90px 0 15px;
}
.surveyQuestions .question {
    margin-bottom: 18px;
    font-size: 16px;
    text-align: left;
    color: #000;    
}
.surveyQuestions .answer {
    padding-bottom: 48px;
}
.radioInput {
    display: block;
    position: relative;
    padding:8px 31px;
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 10px;
    width: 100%;
}
.radioInput:hover {
    background-color: #f6f2f7;
}
.radioInput.checked {
    background: #e6dae7;
    border: 1px solid #5a0762;
    padding:7px 30px;
    font-weight: 700;
}
.radioInput input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radioInput .checkmark {
    position: absolute;
    top: 9px;
    left: 7px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #707070;
}
.radioInput:hover input ~ .checkmark {
    background-color: #f6f2f7;
}
.radioInput input:checked ~ .checkmark {
    background-color: #5A0762;
    border-color: #5a0762;
}
.radioInput .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.radioInput input:checked ~ .checkmark:after {
    display: block;
}
.radioInput .checkmark:after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.checkboxInput {
    display: block;
    position: relative;
    padding:8px 31px;
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 10px;
    width: 100%;
}
.checkboxInput:hover {
    background-color: #f6f2f7;
}
.checkboxInput.checked {
    background: #e6dae7;
    border: 1px solid #5a0762;
    padding:7px 30px;
    font-weight: 700;
}
.checkboxInput input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkboxInput .checkmark {
    position: absolute;
    top: 9px;
    left: 7px;
    height: 16px;
    width: 16px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #707070;
}
.checkboxInput:hover input ~ .checkmark {
    background-color: #f6f2f7;
}
.checkboxInput input:checked ~ .checkmark {
    background-color: #5A0762;
    border-color: #5a0762;
}
.checkboxInput .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkboxInput input:checked ~ .checkmark:after {
    display: block;
}
.checkboxInput .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.surveyQuestions .answer textarea {
    width: 100%;
    height: 170px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #707070;
    display: block;
    resize: none;
}
.surveyButtons {
    padding-bottom: 27px;
    padding-left: 15px;
}
.surveyButtons .btn {
    margin-bottom: 0;
}
.surveyButtons .btn-outline-primary {
    background: transparent;
    border: 1px solid #52145e;
    margin-left: 11px;
    color: var(--purple);
}

.btn-externalLogin {
    min-width: 200px;
    padding: 0.2rem 1rem;
    background: #fff;
}

/***** CM-GO Footer *****/
#cmgoFooter {
    padding: 1rem 0;
    font-size: 1rem;
    color: #757575;
    font-family: "Source Sans Pro", sans-serif;
    background: #fff;
    position: relative;
    z-index: 2;
}

    #cmgoFooter .container {
        padding-bottom: 2rem;
        min-height: unset;
    }

    #cmgoFooter .footerLogos {
        padding-top: 2rem;
        border-top: 1px solid #009AD6;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 2rem;
    }

        #cmgoFooter .footerLogos img {
            max-height: 80px;
            max-width: 150px;
        }

    #cmgoFooter .footerLinks {
        margin-bottom: 2rem;
        font-size: 0;
        justify-content: center;
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }

        #cmgoFooter .footerLinks span {
            display: inline-block;
            font-size: 1rem;
            padding: 0 1.5rem;
            border-right: 1px #757575 solid;
        }

            #cmgoFooter .footerLinks span:first-child {
                padding-left: 0;
            }

            #cmgoFooter .footerLinks span:last-child {
                border-right: 0;
                padding-right: 0;
            }

            #cmgoFooter .footerLinks span a {
                color: #757575;
                display: inline-block;
            }

    #cmgoFooter .copyrightText {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    #cmgoFooter .footerText {
        text-align: left;
        color: #4a4a4a;
        margin-top: 2rem;
    }

@media (max-width: 767px) {
    #cmgoFooter {
        font-size: 14px;
    }

        #cmgoFooter .footerLinks {
            display: block;
        }

            #cmgoFooter .footerLinks span {
                margin-bottom: 0.5rem;
                width: 33%;
                font-size: 14px;
                padding: 0 1rem;
            }

                #cmgoFooter .footerLinks span a {
                    color: #757575;
                    display: inline-block;
                }
}

#cmgoFooter {
    margin-top: auto;
}
/***** CM-GO Footer *****/