.calculator-left {
    margin-top: 35px;
    margin-bottom: 30px;
}

.subwidget {
    margin-bottom: 16px;
}

.dropdown-additional-link {
    margin-left: 10px;
}

.dropdown-additional-link.admin-link {
    font-weight: bold;
}

.dropdown-additional-link.data-plan-link span {
    font-weight: bold;
}

.last-polls-table>tbody>tr>td {
    vertical-align: middle;
}

.last-polls-table {
    display: table;
}

td.last-polls-table__surveyname {
    width: 80%;
}

td.last-polls-table__surveybutton {
    width: 20%;
}


.spinner-wrapper {
    height: 80vh;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-body {
    width: 100px;
    height: 100px;
    border: 3px solid transparent;
    border-top-color: #d6722e;
    border-bottom-color: #81c8f8;
    border-radius: 50%;
    animation: loader-rotate 1.5s linear infinite;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-align: center;
}

.loading-container .loading-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: lightgray;
    opacity: 0.5;
    z-index: 9998;
}

.loading-container .loading {
    z-index: 9999;
    position: fixed;
    display: inline-block;
    background-color: white;
    padding: 20px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loading-container .loading .loading-icon {
    margin-bottom: 8px;
}


a.back-to-top {
    display: none;
    width: 60px;
    height: 60px;
    text-indent: -9999px;
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    background: #EA6C00 url(/static/img/up-arrow.png) no-repeat center 43%;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    opacity: 0.7;
}

a:hover.back-to-top {
    background-color: #F5AC49;
}


a.share-link {
    text-decoration: none;
}

a.share-link:hover {
    text-decoration: none;
}

div.color-report {
    margin-top: 60px;
}

div.color-row {
    display: table;
    width: 100%;
    border-spacing: 5px 5px;
    padding-top: 5px;
}

.color-report div.color-row {
    margin-top: 30px;
}

span.color-cell {
    display: table-cell;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #a4a4a4;

}


.text-survey .media-heading {
    font-size: 3em;
}

.btn-span {
    padding-right: 5px;
    vertical-align: inherit;
}

@media only screen and (max-width: 800px) {

    .table-list table,
    .table-list thead,
    .table-list tbody,
    .table-list th,
    .table-list td,
    .table-list tr {
        display: block;
    }

    .table-list thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-list tr {
        border: 1px solid #ccc;
    }

    .table-list td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

    .table-list td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    .table-list td:before {
        content: attr(data-title);
    }
}

.dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dl-horizontal dd {
    margin-left: 180px;
}



tr.clickable-row {
    cursor: pointer;
}

.favorite-images-like-btn {
    background-image: url('../img/heart_small.png');
    background-position: top;
    background-size: auto;
    background-repeat: no-repeat;
    width: 64px;
    height: 65px;
    display: block;
    transition: background 1s;
    position: relative;
}

.favorite-images-like-btn>span {
    position: absolute;
    bottom: 0px;
    text-align: center;
    opacity: 0;
    width: 64px;
    border-radius: 5px;
    background-color: #2D6A83;
    line-height: 2em;
    font-size: 14px;
    text-decoration: none !important;
    color: white !important;
    font-weight: bold;
    display: block;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: opacity 500ms;
}

.favorite-images-like-btn:hover span {
    opacity: 1;
}

.favorite-images-like-btn.liked {
    background-image: url('../img/heart_filled_small.png');
}

.sweet-alert [class*="button-"] {
    float: none;
    color: transparent;
    background-color: transparent;
    padding: 0;
    overflow: visible;
    border: none;
    height: 100%;
    font: initial;
}


.btn-skyline {
    background-color: #EA6C00;
    border-color: #EA6C00;
}

.btn-skyline:hover,
.btn-skyline:focus,
.btn-skyline:active,
.btn-skyline.active {
    background-color: #d16000;
    border-color: #b75400;
}

.btn-skyline.disabled:hover,
.btn-skyline.disabled:focus,
.btn-skyline.disabled:active,
.btn-skyline.disabled.active,
.btn-skyline[disabled]:hover,
.btn-skyline[disabled]:focus,
.btn-skyline[disabled]:active,
.btn-skyline[disabled].active,
fieldset[disabled] .btn-custom:hover,
fieldset[disabled] .btn-custom:focus,
fieldset[disabled] .btn-custom:active,
fieldset[disabled] .btn-custom.active {
    background-color: #EA6C00;
    border-color: #EA6C00;
}

.btn.btn-lg-skyline {
    min-width: 300px;
    line-height: 100px;
    margin-top: 3px;
}

.btn.btn-lg-skyline.btn-bold {
    font-size: 1.5em;
}


.highlight {
    color: #ebebeb;
    font-style: italic;
}


/* new layout */


.left-column,
.center-column,
.right-column {
    min-height: 100vh;
    padding-top: 25px;
}

.right-column .header {
    margin-top: 0px;
}

.center-column {
    background-color: #f4f4f4;
}

.left-column .menu-area {
    margin-top: 70px;
}

.left-column .menu-area ul li {
    line-height: 2.5em;
}

.logo-area img,
.user-photo-area img {
    max-width: 100%;
}

.user-photo-area {
    text-align: center;
}


.user-photo-area .company-name {
    padding-top: 20px;
    font-size: 1.3em;
}

.user-photo-area .user-name {
    font-size: 1.1em;
}

.projects-stats-area .tab-content {
    padding-top: 10px;
    overflow: hidden;
    padding-left: 0px;
    margin-left: 0px;
}

.projects-stats-area .thumbnail {
    height: 100px;
    margin: 5px;
    padding: 0px;
    text-align: center;
    padding-top: 10px;
    font-size: 0.8em;
}

.projects-stats-area .thumbnail span {
    display: block;
    font-size: 2em;
    padding-top: 10px;
}

.col-md-6.ext-menu-item {
    margin: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.chart-area {
    text-align: center;
    margin-top: 40px;
}

.chart-area .span {
    display: block;
}


.ext-params-area {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
}

.projects-stats-area .tab-content .tab-pane {
    height: 100%;
    overflow: hidden;
}

.template-item.selected .thumbnail {
    background-color: #e2ffe8;
}


div .menu-area ul li a {
    text-decoration: underline;
}

div .menu-area ul li.active a {
    color: darkslategray;
}


.pin-item .thumbnail.active {
    background-color: #b0d8bf;
}

.board .thumbnail.active {
    background-color: #edf5e2;
}

.pin-item .thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-centered {
    text-align: center;
}

.col-centered {
    display: inline-block;
    float: none;
    text-align: left;
    margin-right: -4px;
}

p.item-description {
    height: 150px;
}


.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}


.col-xs-15 {
    width: 19.8%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-15 {
        width: 19.8%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 19.6%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 19.7%;
        float: left;
    }
}

@media only screen and (max-width:767px) {
    .inner_page ul.nav.navbar-nav .dropdown-menu {
        display: block;
        position: static;
        background-color: transparent;
        border: 0 none;
        box-shadow: none;
        margin-top: 0;
        position: static;
        width: 100%;
    }

    .inner_page .navbar-nav .dropdown-menu>li>a,
    .inner_page .navbar-nav .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }

    .inner_page .navbar-nav .dropdown-menu>li>a {
        line-height: 20px;
    }

    .inner_page .navbar-default .navbar-nav .dropdown-menu>li>a {
        color: #777;
    }

    .inner_page #dropdown-name {
        display: none;
    }

    .inner_page div.navbar-collapse form {
        width: 100%;
        margin-left: 0px;
    }
}


.template span.environment-shared-template {
    color: green;
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: white;
    padding: 5px;
}

.removable-calculator-item {
    margin-bottom: 20px;
    padding: 10px;
}

.removable-calculator-item a {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #c8c8c8;
}

.removable-calculator-item a:hover {
    color: white;
}


.removable-calculator-layout .col-item {
    position: relative;
}

.removable-calculator-layout a.btn-remove {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #c8c8c8;
}

.removable-calculator-layout a.btn-remove:hover {
    color: #6BCAFD;
}

.plus-min-btn {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
    float: left;
    margin-right: 10px;
}

@media only print {
    .plus-min-btn {
        display: none;
    }
}

.plus-min-btn:before,
.plus-min-btn:after {
    content: "";
    position: absolute;
    background-color: gray;
    transition: transform 0.25s ease-out;
}

.plus-min-btn:before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    margin-left: -2px;
}

.plus-min-btn:after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    margin-top: -2px;
}

.plus-min-btn:hover,
div.toggable-header:hover {
    cursor: pointer;
}

.plus-min-btn:hover:before,
div.toggable-header:hover .plus-min-btn:before {
    transform: rotate(90deg);
}

.plus-min-btn:hover:after,
div.toggable-header:hover .plus-min-btn:after {
    transform: rotate(180deg);
}

/* surveys sidebar */
.projects-stats-area .thumbnail {
    position: relative;
}

.projects-stats-area .thumbnail span.popover-icon {
    cursor: pointer;
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 1.2em;
}

.projects-stats-area .thumbnail span.counter.active {
    font-weight: bold;
    text-decoration: underline;
}

.account-info ul.account-info-admins {
    padding-left: 0px;
}

#additional-settings-salesadmins  #div_id_tags {
    display: none;
}

div.form-group #id_tags,
div.form-group #id_main-tags {
    display: none;
}

div.form-group ul.as-selections {
    padding: 0px;
    margin: 0px;
}

div.form-group ul.as-selections li {
    margin-bottom: 10px;
}

div.form-group ul.as-selections li.as-original {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

div.form-group ul.as-selections li.as-original input {
    height: inherit !important;
    width: 100%;
}


div.layouts_app,
div.applications_app {
    margin: 20px 0px;
}

.fileinput {
    height: inherit;
}

.corner-label {
    position: relative;
    font-weight: bold;
    font-family: arial;
    position: absolute;
    cursor: pointer;
    left: 20px;
    top: 5px;
    width: 50px;
    height: 50px;
    background: #ffc1c1;
    border-radius: 5px 0px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0% 100%);
    line-height: 30px;
    padding-left: 8px;
    box-sizing: border-box;
    color: #696969;
    font-size: 20px;
}

.corner-label.visual_ranking {
    background: #c1faaf;
}

.corner-label.custom_variables {
    background: #cce8ff;
}

.corner-label:hover::after {
    color: #eee;
}

.word-break {
    word-break: break-word;
}

.xwrap {
    padding: 0px;
}

.xwrap {
    min-height: 100%;
}

.xwrap>.container {
    flex: 1;
    min-height: 100%;
}

#fav_button {
    display: none;
}

[v-cloak] {
    display: none
}

.cards_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cards_list-image {
    position: relative;
    flex-grow: 1;
    flex-basis: 300px;
    max-width: 370px;
    margin: 5px;
    align-items: center;
    justify-content: space-around;
    display: flex;
    padding: 5px;
    border: 1px solid #efefef;
    flex-direction: column;
}

.cards_list-image a:hover {
    text-decoration: none
}

.cards_list-image img {
    cursor: pointer;
    max-height: 200px;
}

.cards_list-image:hover {
    border: 1px solid #F5AC49;
}

.cards__card_description {
    width: 100%;
    padding: 5px;
    text-align: center;
}

.cards__card_type {
    margin-bottom: 10px;
    font-weight: bold;
    color: gray;
}

@media(max-width:767px) {
    .cards_list {
        justify-content: space-around;
    }
}

span.asteriskField {
    padding-left: 4px;
}


.footer {
    display: block;
    color: #5F5F63;
    overflow: hidden;
    border: solid #ddd;
    border-width: 1px 0;
    background: #EFEFEF;
    padding: 20px 0;
    font: 14px/100% 'PtSansRegular', sans-serif;
}

.footer__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.footer__content-copyright {
    margin-right: auto;
    margin-bottom: 0px;

}

.footer__content-statements {
    margin-bottom: 0px;

}

@media(max-width:767px) {
    .footer__content {
        font-size: 12px;
        height: auto;
        flex-direction: column;
        margin-top: 0px;
    }

    .footer__content-copyright {
        margin-bottom: 10px;
    }
}


.tooltip {
    display: block !important;
    z-index: 10000;
}

.tooltip .tooltip-inner {
    background: rgb(87, 87, 87);
    color: white;
    border-radius: 5px;
    padding: 5px 10px 4px;
}

.tooltip .tooltip-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    margin: 5px;
    border-color: rgb(87, 87, 87);
    z-index: 1;
}

.tooltip[x-placement^="top"] {
    margin-bottom: 5px;
}

.tooltip[x-placement^="top"] .tooltip-arrow {
    border-width: 5px 5px 0 5px;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    bottom: -5px;
    left: calc(50% - 5px);
    margin-top: 0;
    margin-bottom: 0;
}

.tooltip[x-placement^="bottom"] {
    margin-top: 5px;
}

.tooltip[x-placement^="bottom"] .tooltip-arrow {
    border-width: 0 5px 5px 5px;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    border-top-color: transparent !important;
    top: -5px;
    left: calc(50% - 5px);
    margin-top: 0;
    margin-bottom: 0;
}

.tooltip[x-placement^="right"] {
    margin-left: 5px;
}

.tooltip[x-placement^="right"] .tooltip-arrow {
    border-width: 5px 5px 5px 0;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
    left: -5px;
    top: calc(50% - 5px);
    margin-left: 0;
    margin-right: 0;
}

.tooltip[x-placement^="left"] {
    margin-right: 5px;
}

.tooltip[x-placement^="left"] .tooltip-arrow {
    border-width: 5px 0 5px 5px;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    right: -5px;
    top: calc(50% - 5px);
    margin-left: 0;
    margin-right: 0;
}

.tooltip.popover .popover-inner {
    background: #f9f9f9;
    color: rgb(87, 87, 87);
    padding: 24px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(rgb(87, 87, 87), .1);
}

.tooltip.popover .popover-arrow {
    border-color: #f9f9f9;
}

.tooltip[aria-hidden='true'] {
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s, visibility .15s;
}

.tooltip[aria-hidden='false'] {
    visibility: visible;
    opacity: 1;
    transition: opacity .15s;
}


/* fix css */
nav.profile-dropdown .thumbnail {
    padding: 0px;
    margin: 0px;
}

nav.profile-dropdown label {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: inherit;
    margin-bottom: inherit;
}

input[type="text"],
input[type="password"] {
    padding: 6px 12px !important;
}

.avg-btn .overflow {
    padding: 9px;
}

.avg-rate {
    line-height: 37px;
}

.search-wrapper textarea:focus,
input[type="text"]:focus {
    box-shadow: none;
    outline: 0 none;
}

.search-box .overflow {
    padding: 0px;
}

input[type='radio'] {
    border-radius: 10px !important;
}

/* TWITTER TYPEAHEAD */
.twitter-typeahead {
    width: 100%;
}

.tt-suggestion.tt-cursor {
    color: #fff;
    background-color: #0097cf;
}

.tt-menu {
    width: 422px;
    margin: 12px 0;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

.tt-suggestion {
    padding: 3px 20px;
}

.tt-suggestion:hover {
    cursor: pointer;
    color: #fff;
    background-color: #0097cf;
}

@media screen and (max-width: 767px) {

    header {
        min-height: 50px;
        position: relative;
    }
}

@media only screen and (max-width: 764px) {
    .xwrap {
        width: fit-content;
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }
}


/* === card component ======  */
.card {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 6px;
}

.card>.card-link {
    color: #333;
}

.card>.card-link:hover {
    text-decoration: none;
}

.card>.card-link .card-img img {
    border-radius: 6px 6px 0 0;
}

.card .card-img {
    position: relative;
    padding: 0;
    display: table;
}

.card .card-img .card-caption {
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
}

.card .card-body {
    display: table;
    width: 100%;
    padding: 12px;
}

.card .card-header {
    border-radius: 6px 6px 0 0;
    padding: 8px;
}

.card .card-footer {
    border-radius: 0 0 6px 6px;
    padding: 8px;
}

.card .card-left {
    position: relative;
    float: left;
    padding: 0 0 8px 0;
}

.card .card-right {
    position: relative;
    float: left;
    padding: 8px 0 0 0;
}

.card .card-body h1:first-child,
.card .card-body h2:first-child,
.card .card-body h3:first-child,
.card .card-body h4:first-child,
.card .card-body .h1,
.card .card-body .h2,
.card .card-body .h3,
.card .card-body .h4 {
    margin-top: 0;
}

.card .card-body .heading {
    display: block;
}

.card .card-body .heading:last-child {
    margin-bottom: 0;
}

.card .card-body .lead {
    text-align: center;
}

@media(min-width: 768px) {
    .card .card-left {
        float: left;
        padding: 0 8px 0 0;
    }

    .card .card-right {
        float: left;
        padding: 0 0 0 8px;
    }

    .card .card-4-8 .card-left {
        width: 33.33333333%;
    }

    .card .card-4-8 .card-right {
        width: 66.66666667%;
    }

    .card .card-5-7 .card-left {
        width: 41.66666667%;
    }

    .card .card-5-7 .card-right {
        width: 58.33333333%;
    }

    .card .card-6-6 .card-left {
        width: 50%;
    }

    .card .card-6-6 .card-right {
        width: 50%;
    }

    .card .card-7-5 .card-left {
        width: 58.33333333%;
    }

    .card .card-7-5 .card-right {
        width: 41.66666667%;
    }

    .card .card-8-4 .card-left {
        width: 66.66666667%;
    }

    .card .card-8-4 .card-right {
        width: 33.33333333%;
    }
}

/* -- default theme ------ */
.card-default {
    border-color: #ddd;
    background-color: #fff;
    margin-bottom: 24px;
}

.card-default>.card-header,
.card-default>.card-footer {
    color: #333;
    background-color: #ddd;
}

.card-default>.card-header {
    border-bottom: 1px solid #ddd;
    padding: 8px;
}

.card-default>.card-footer {
    border-top: 1px solid #ddd;
    padding: 8px;
}

.card-default>.card-body {}

.card-default>.card-img:first-child img {
    border-radius: 6px 6px 0 0;
}

.card-default>.card-left {
    padding-right: 4px;
}

.card-default>.card-right {
    padding-left: 4px;
}

.card-default p:last-child {
    margin-bottom: 0;
}

.card-default .card-caption {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}


/* -- price theme ------ */
.card-price {
    border-color: #999;
    background-color: #ededed;
    margin-bottom: 24px;
}

.card-price>.card-heading,
.card-price>.card-footer {
    color: #333;
    background-color: #fdfdfd;
}

.card-price>.card-heading {
    border-bottom: 1px solid #ddd;
    padding: 8px;
}

.card-price>.card-footer {
    border-top: 1px solid #ddd;
    padding: 8px;
}

.card-price>.card-img:first-child img {
    border-radius: 6px 6px 0 0;
}

.card-price>.card-left {
    padding-right: 4px;
}

.card-price>.card-right {
    padding-left: 4px;
}

.card-price .card-caption {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.card-price p:last-child {
    margin-bottom: 0;
}

.card-price .price {
    text-align: center;
    color: #337ab7;
    font-size: 3em;
    text-transform: uppercase;
    line-height: 0.7em;
    margin: 24px 0 16px;
}

.card-price .price small {
    font-size: 0.4em;
    color: #66a5da;
}

.card-price .details {
    list-style: none;
    margin-bottom: 24px;
    padding: 0 18px;
}

.card-price .details li {
    text-align: center;
    margin-bottom: 8px;
}

.card-price .buy-now {
    text-transform: uppercase;
}

.card-price table .price {
    font-size: 1.2em;
    font-weight: 700;
    text-align: left;
}

.card-price table .note {
    color: #666;
    font-size: 0.8em;
}



.swal2-container {
    z-index: 100000 !important;
}

.swal2-popup {
    border: 1px solid gray !important;
}

.surveys__list a,
.surveys__list input {
    /*margin: 5px;*/
}

.surveys__list td.name {
    width: 100%;
}

.surveys__list td.name a.link {
    font-weight: bold;
}

.surveys__list--mobile .panel-body {
    padding: 10px;
}

.surveys__list--mobile .info {
    margin-bottom: 20px;
}

.surveys__list--mobile .controls {

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.wrap {
    white-space: pre-wrap;
    /* CSS3 */
    white-space: -moz-pre-wrap;
    /* Firefox */
    white-space: -pre-wrap;
    /* Opera <7 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: break-word;
    /* IE */
}

.share-link {
    font-size: 0.95em;
}

@media print {
    .alert {
        display: none;
    }
}

.home-about {
    margin-top: 20px;
}

.home-about h2 {
    margin: 25px 0px 25px;
}

.home-about-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 40px 0px;
}

.home-about-section .slider {
    width: 300px;
    height: 200px;
}

.home-about-section .slider .image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 300px;
    height: 200px;

}

.home-about-section .content {
    width: 100%;
    padding: 20px;
}

.home-about-section .content p, .home-about-section .content ul, .home-about-section .content ol{
    font-size: 1.5em;
    line-height: normal;
}

.home-about-section .content p {
    text-align: justify;
}

.home-about-section .content ul {
    list-style: square outside
}

.home-about-section .content ol {
    list-style-type: decimal;
}

.home-about-section.home-about-section--right {
    flex-direction: row-reverse;
}

.home-about-section.home-about-section--right .content {
    padding-left: 0px;
}


@media (max-width: 767.98px) {
     .home-about-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin: 40px 0px;
    }
    .home-about-section.home-about-section--right {
        flex-direction: column;
    }
}


.v--modal-box {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .explorer-wrapper {
    height: 100%;
  }


  .modal-wrapper {
    display: table-cell;
    vertical-align: middle;
  }

  .modal-body {
    flex: 1;
  }
  .modal-footer {
    flex: 0;
    height: inherit;
  }

  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    max-height: 650px;
    overflow: scroll;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
  }
