/*
 * Theme custom css
*/

input, textarea, select {
    border: 2px solid rgb(67, 67, 67) !important;
    border-radius: 4px !important;
}

/* Default heading sizes */
h1 {
    font-size: 25px;
}
h2 {
    font-size: 20px;
}
h3 {
    font-size: 15px;
}

.required {
	display: inline-block;
	color: #d2322d;
	font-size: 13px;
}

.error-text {
	display: inline-block;
	color: #d2322d;
	font-size: 13px;
}

.nav a {
    min-height: 100%;
}

label {
    margin-top: 5px;
    font-weight: 500;
}

.table-responsive {
    margin-top: 5px;
}
.nb-form {
    position: fixed;
    z-index: 9999;
    width: 300px;
    background: #FFF;
    right: 20px;
    top: 95%;
    transition: all .8s cubic-bezier(.22, .67, .43, 1.22) .2s;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
}
.nb-form:hover {
    top: auto;
    bottom: 0%;
}

/*-- User Icon --*/

.nb-form .user-icon {
    position: absolute;
    top: -49px;
    right: 12px;
    display: block;
    width: 58px;
    margin: 20px auto 15px;
    border-radius: 100%;
}

.card {
    border: 1px solid var(--ts-darkblue);
}
.card .card-header {
    background-color: var(--ts-darkblue);
    color:white;
}

/*-- Title --*/

.nb-form .title {
    background: #5bc0de;
    font-size: 16px !important;
    padding: 20px 18px !important;
    color: #fff !important;
    border-radius: 10px 10px 0 0;
}

/*-- Text --*/

.nb-form p {
    font-size: 13px;
    margin: 0;
    padding: 15px;
    color: #666;
}

.nb-form p.message {
    margin-left: 7px;
}

/*-- Form Elements --*/

.attachmentInformation {
    border-left: 1px solid #cccccc;
}

.attachmentInformation ol {
  color: #ccc;
  list-style-type: none;
}

.attachmentInformation ol li {
  position: relative;
  font: bold italic 15px/1.5 Helvetica, Verdana, sans-serif;
  margin-bottom: 10px;
}

.attachmentInformation li p {
  font: 12px/1.5 Helvetica, sans-serif;
  padding-left: 60px;
  color: #555;
}

.activeType {
  color: #5cb85c !important;
}

.nb-form form {
    padding: 0 15px 15px 15px;
}

.nb-form input,
.nb-form textarea {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px;
    width: 254px;
    max-width: 254px;
    margin-bottom: 10px;
    margin-left: 7px;
    padding: 6px;
    border: none;
    border-radius: 4px;
    color: #999;
    border-bottom: 1px solid #f0f0f0;
}

.nb-form input:focus,
.nb-form textarea:focus {

    box-shadow: none;
}

.nb-form input[type='submit'] {
    display: block;
    width: 120px;
    margin: 0 auto;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .4s ease;
    color: #fff !important;
    border: none;
}

.nb-form input[type='submit']:hover {
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.07),0 1px 7px 0 rgba(0,0,0,0.02),0 3px 1px -1px rgba(0,0,0,0.1);
}

.nb-form textarea {
    min-height: 110px;
}


.nb-form ::-webkit-input-placeholder {
    color: #ccb0b0;
}

.nb-form ::-moz-placeholder{
    color: #ccb0b0;
}

.nb-form :-ms-input-placeholder {
    color: #ccb0b0;
}

.nb-form :-moz-placeholder {
    color: #ccb0b0;
}

.nb-form input[type='submit'] {
    background: #03a9f4;
}

@media screen and (max-width: 676px) {
    .nb-form:hover .user-icon {
        display: none;
    }

    .nb-form .message {
        display: none;
    }

    .nb-form form {
        padding-top: 15px;
    }
    .nb-form{
        right: 50%;
        bottom: -320px;
        left: 50%;
        transform: translateX(-50%);
    }
}

#chatbot #chatbot-message {
    padding: 0;
    border: 1px #d7d7d7 solid;
    height: 200px;
    border-radius: 4px;
    margin: 0 0 12px 0;
    font-size: 12px;
    overflow: hidden;
    overflow-y: auto;
}
#chatbot #chatbot-message p {
    padding: 6px 12px;
    color: #666;
    margin: 0;
}
#chatbot #chatbot-message p.from-bot {
    color: #0af;
}
#chatbot #chatbot-message p.from-bot .user {
    color: #0af;
}
#chatbot #chatbot-message p:nth-child(even) {
    background-color: #f7fcff;
}
#chatbot #chatbot-message .user {
    font-weight: bold;
    color: #333;
}
#chatbot #chatbot-message .message {
    font-style: italic;
    color: #bfbfbf;
}
#chatbot #chatbot-message .message .glyphicon {
    font-size: 10px;
}
#chatbot .input-group-btn .btn {
    border-left: 0;
}

.chatbot-submit {
    margin-left: 5px;
}

.b-access_denied {
    padding-bottom: 100px;
    padding-top: 50px;
}

.b-access_denied .b-page_header {
    border-bottom: 0;
    padding-bottom: 0;
    margin: 0;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.b-access_denied .b-page_header::before {
    content: "401";
    top: 0;
    width: 100%;
    text-align: center;
    left: 0;
    position: absolute;
    color: rgba(142, 142, 142, 0.15);
    font-size: 400px;
    line-height: 320px;
    font-weight: 700;
}

.b-access_denied .b-page_header h1 {
    margin: auto;
    padding: 115px 0;
    text-align: center;
    text-transform: uppercase;
    color: #1daaa3;
    opacity: .8;
    letter-spacing: 3px;
    font-size: 75px;
    font-weight: 700;
}

.b-access_denied h2 {
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #1B1919;
    font-weight: bold;
}

.b-access_denied p {
    line-height: 1.7;
    color: #8E8E8E;
    margin-bottom: 20px;
}

.b-access_denied .b-searchform {
    max-width: 350px;
    margin: auto;
    position: relative;
}

.b-access_denied .b-searchform input {
    width: 100%;
    height: 40px;
    position: relative;
    padding-right: 105px;
    border: 1px solid rgba(129, 129, 129, 0.25);
    font-size: 14px;
    line-height: 18px;
    padding: 0 10px;
    transition: border-color .5s;
    box-shadow: none;
    border-radius: 0;
}
.b-access_denied .b-searchform .btn {
    cursor: pointer;
    background-color: #1daaa3;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
}
.b-access_denied .b-searchform .btn:hover {
    opacity: 0.75;
}

@media (max-width: 990px) {
    .b-access_denied .b-page_header::before {
        font-size: 300px;
    }
    .b-access_denied h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .b-access_denied .b-page_header h1 {
        font-size: 35px;
        padding: 55px 0; }
    .b-access_denied .b-page_header::before {
        font-size: 150px;
        line-height: 150px;
    }
    .b-access_denied h2 {
        font-size: 22px;
    }
    .b-access_denied .b-searchform {
        max-width: 300px;
    }

    .language-dropdown {
        display: none !important;
    }
}

.b-server-error {
    padding-bottom: 100px;
    padding-top: 50px;
}

.b-server-error .b-page_header {
    border-bottom: 0;
    padding-bottom: 0;
    margin: 0;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.b-server-error .b-page_header::before {
    content: "500";
    top: 0;
    width: 100%;
    text-align: center;
    left: 0;
    position: absolute;
    color: rgba(142, 142, 142, 0.15);
    font-size: 400px;
    line-height: 320px;
    font-weight: 700;
}

.b-server-error .b-page_header h1 {
    margin: auto;
    padding: 115px 0;
    text-align: center;
    text-transform: uppercase;
    color: #1daaa3;
    opacity: .8;
    letter-spacing: 3px;
    font-size: 75px;
    font-weight: 700;
}

.b-server-error h2 {
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #1B1919;
    font-weight: bold;
}

.b-server-error p {
    line-height: 1.7;
    color: #8E8E8E;
    margin-bottom: 20px;
}

.b-server-error .b-searchform {
    max-width: 350px;
    margin: auto;
    position: relative;
}

.b-server-error .b-searchform input {
    width: 100%;
    height: 40px;
    position: relative;
    padding-right: 105px;
    border: 1px solid rgba(129, 129, 129, 0.25);
    font-size: 14px;
    line-height: 18px;
    padding: 0 10px;
    transition: border-color .5s;
    box-shadow: none;
    border-radius: 0;
}
.b-server-error .b-searchform .btn {
    cursor: pointer;
    background-color: #1daaa3;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
}
.b-server-error .b-searchform .btn:hover {
    opacity: 0.75;
}

@media (max-width: 990px) {
    .b-server-error .b-page_header::before {
        font-size: 300px;
    }
    .b-server-error h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .b-server-error .b-page_header h1 {
        font-size: 35px;
        padding: 55px 0; }
    .b-server-error .b-page_header::before {
        font-size: 150px;
        line-height: 150px;
    }
    .b-server-error h2 {
        font-size: 22px;
    }
    .b-server-error .b-searchform {
        max-width: 300px;
    }
}


/* Keeps penno logo center when on desktop */
.penno-column {
    margin-left: 35%;
}

@media (max-width: 990px) {
    .penno-column {
        margin-left: 0%;
    }
}

/* language dropdown button styles */

.dropdown-item-custom {
    line-height: 40px;

}

.dropdown-menu {
    margin-top: -0.5rem;

}
.dropdown-item:focus, .dropdown-item:hover {
  color: white;
  background-color: #00bcd4; }

.dropdownbutton {
    margin-left:0.5rem;
    background-color: white;
    border: 0px;
}

/* Tupas authentication methods */
.bank-button img {
    margin-bottom : 10px;
}

/**/

.cards div.columns .card-block {
    height: 100%;
    display: table;
    width: 100%
}

    .large-4 {
        width: 33.33333%
    }

    .points-item .vertical-align {
    width: 100%
}

.vertical-align {
    display: table;
    table-layout: fixed
}

.vertical-align .vertical-align-inner {
    padding: 0;
    margin: 0;
    display: table-cell;
    vertical-align: middle
}

.vertical-align-inner h2 {
    font-size: 24px;
}
.vertical-align-baseline {
    vertical-align: baseline
}

.vertical-align-length {
    vertical-align: length
}

.vertical-align-sub {
    vertical-align: sub
}

.vertical-align-super {
    vertical-align: super
}

.vertical-align-top {
    vertical-align: top
}

.vertical-align-text-top {
    vertical-align: text-top
}

.vertical-align-middle {
    vertical-align: middle
}

.vertical-align-bottom {
    vertical-align: bottom
}

.vertical-align-text-bottom {
    vertical-align: text-bottom
}

.vertical-align-initial {
    vertical-align: initial
}

.vertical-align-inherit {
    vertical-align: inherit
}

/* Color of invalid field */
.error-message {
  color: #cc0033;
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  margin: 5px 0 0;
}

.input-group .error-message {
  display: none;
}

/* Error Styling */
.error label {
  color: #cc0033;
}

.error input[type=text] {
  background-color: #fce4e4;
  border: 1px solid #cc0033;

}

.error .error-message {
  display: inline-block;
}

.message-side-panel {
    margin-left: 10px;
}

ul.list-group .active a {
    color: #FFF;
}

ul.list-group .active {
    background-color: #000;
    border-style: none;
}
.refreshButton {
    margin-left: 10px;
}

.messageComposer {
    display: none;
    margin-bottom:10px;
    margin-right:10px;
}

.sendMessageButton {
    display: none;
}

/* Modals */
.modal-dialog {
    margin: 100px auto;
}

/* Blog */
.b-blog_grid .b-blog_single_info h5.b-entry_title a {
    color: #00b1b7;
}

.b-blog_grid .card {
    margin-bottom: 5px;
}

/* Nav Links */
.nav-pills .nav-link.active {
    background-color: #00bcd4;
}

/* Nav style for step 4 in form */
.nav-pills-form .nav-link.active {
    background-color: #4285F4;
}
.nav-pills-form .nav-item-income .nav-link.active {
    background-color: #5cb85c;
}

.nav-pills-form .nav-item-expense .nav-link.active {
    background-color: #c9302c;
}
.nav-pills-form a.nav-link {
    color: black;
}
.panel-heading-form {
    background-color: #E8E8E8 !important;
}

/* Range Sliders */
input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
   /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}

/* Skip navigation */
.screen-reader-text:focus {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    background-color: white;
    color: black;
    margin-top: 10px;
    margin-left: 10px;
    width: 200px;
    height: 50px;
    z-index: 9999;
}
.screen-reader-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Select2 */

.select2-container--bootstrap.select2-container--focus
.select2-selection,
.select2-container--bootstrap.select2-container--open
.select2-selection {
    border-color: #00bcd4 !important;
}

.select2-selection__rendered {
    line-height: 31px !important;
}

.select2-container .select2-selection--single {
    height: 40px !important;
}

.select2-selection__arrow {
    height: 40px !important;
}

.select2-container--bootstrap {
    .select2-selection--multiple {
        .select2-selection__choice {
            margin-top: calc(#{$s2bs-padding-base-vertical} - 1px);
        }

        .select2-search--inline .select2-search__field {
            height: $s2bs-input-height-base;
        }
    }

    .select2-selection--multiple.input-sm,
    .input-group-sm & .select2-selection--multiple,
    .form-group-sm & .select2-selection--multiple {
        .select2-selection__choice {
            margin-top: calc(#{$s2bs-padding-small-vertical} - 1px);
        }

        .select2-search--inline .select2-search__field {
            height: $s2bs-input-height-small;
        }
    }

    .select2-selection--multiple.input-lg,
    .input-group-lg & .select2-selection--multiple,
    .form-group-lg & .select2-selection--multiple {
        .select2-selection__choice {
            margin-top: calc(#{$s2bs-padding-large-vertical} - 1px) ;
        }

        .select2-search--inline .select2-search__field {
            height: $s2bs-input-height-large;
        }
    }
}

.btn-register {
    width: 100%;
    margin-top: 10px;
    border: 2px solid #000;
    background-color: transparent;
    color: #000;
}


.veikkaus_animation {
    animation-name: veikkaus-spin;
    animation-duration: 2s;
}

@keyframes veikkaus-spin {
    0%   {transform: rotate(0deg);}
   100% {transform: rotate(360deg);}
}

.text-error {
    color: red;
}

.bg-ts {
    background-color: #005E66;
}
.bg-ts-turquoise {
    background-color: var(--ts-turquoise-light);
}
.small-h1 {
    font-size: 30px;
}

.tiny-h1 {
    font-size: 20px;
}

.application-h1 {
    margin-top: 10px;
    font-size: 1.25rem;
}

a:hover {
    text-decoration: underline;
}
a {
    text-decoration: underline;
}

.register-link {
    padding: 12px;
    margin-top:10px;
    font-size: 14px;
    text-transform: uppercase;

}
.register-link:hover {
    background-color: black;
    color:white;
}

.b-header_right .b-header_links {
    border-right: 0px !important;
}

.bs-popover {
    display: inline;
    color:#0275d8;
}

.btn {
    border-radius: 4px;
}

.btn-primary {
    color: white !important;
    background-color: var(--ts-darkblue);
    border: 2px solid var(--ts-darkblue);
}
.btn-primary:hover {
    color: white !important;
    background-color: var(--ts-turquoise-dark);
    border: 2px solid var(--ts-turquoise-dark);
}

.btn-outline-primary {
    color: var(--ts-darkblue);
    background-color: white;
    border: 2px solid var(--ts-darkblue);
}
.btn-outline-primary:hover {
    color: white;
    background-color: var(--ts-darkblue);
    border: 2px solid var(--ts-darkblue);
}
.btn-primary.disabled {
    color: white;
    background-color: var(--ts-darkblue);
    border: 2px solid var(--ts-darkblue);
}

.btn-secondary {
    background-color: #595959;
}
.btn-secondary:active:focus {
    background-color: #1c1c1c;
    color: white;
}

.btn-primary i {
    color: white !important;
}

.btn-full {
    background-color: #0c838f;
    border-color: #0c838f;
}
.btn-info {
    background-color: #0c838f;
    border-color: #0c838f;
    color: white;
}
.btn-info:hover {
    background-color: #001314;
    border-color: #001314;
}
.btn-full:hover {
    background-color: #001314;
    border-color: #001314;
}

.btn-danger {
    border: 2px solid #721d1a;
    background-color: #721d1a;
    color: white;
}
.btn-danger:hover {
    background-color: #721d1a;
    border-color: #721d1a;
}

.btn-warning {
    color: black;
}
.btn-warning:hover {
    color: black;
}

.fa-question-circle {
    font-size: 20px;
}
#customPageGuideButton {
    position: absolute;
    right: 0;
    margin-top:150px;
    z-index: 100;
    width:40px;
    overflow: hidden;
    border-radius: 5px 0px 0 5px;
    font-size: 20px;
}
#customPageGuideButton:hover {
    width:180px;
    overflow: hidden;
}
#customPageGuideButton:focus {
    width:180px;
    overflow: hidden;
}
.b-section_title span {
    color: black;
}
.b-top_bar_left a {
    border-bottom: 0px;
}
.b-social-icons > a, i {
    color: white;
}
.b-social-icons > a:hover {
    text-decoration: underline !important;
}

.b-services_form textarea {
    height: 80px;
    padding: 10px !important;
}

.message-body li {
    list-style-type: none;
}

#accordionFiles .card-header {
    color: white;
}

.b-main_menu > ul > li > a:hover {
    color: #0c838f;
    text-decoration:underline !important;
}

.menu-btn {
    background-color: white;
    border:none;
}

.mobile-top {
    margin-top:10px;
    margin-bottom:10px;
}

.close-menu-btn {
    background-color: rgb(175, 0, 0);
    padding: 0.5em;
    border: 2px solid rgb(175, 0, 0);
}

.bg-warning {
    background-color: #ffeed6 !important; }

a {
    color: #934367;
    font-size: 16px;
    font-weight:500;
}

.info-message {
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    margin: 5px 0 0;
}

select:active {
    outline: auto !important;
}
select:focus {
    outline: auto !important;
}
input:active {
    outline: auto !important;
}
input:focus {
    outline: auto !important;
}
a:active {
    outline: auto !important;
    outline-color:black !important;
    outline-offset: 5px;
}

a:focus {
    outline: auto !important;
    outline-color:black !important;
    outline-offset: 5px;
}

.b-not_found .b-page_header h1 {
    color: #0c838f;
}

.text-info {
    color: #0c838f !important;
}

.b-main_menu > ul > li > a {
    color: #0c838f;
    font-size: 18px;
    text-decoration: none;
    font-weight: 400;
}

.b-footer_container {
    background-color: var(--ts-darkblue);
}

.b-footer_container .b-footer_block_in p {
    color: rgba(255, 255, 255);
    font-size: 16px;
}

.b-page_title_default {
    background-color: #934367;
}

.b-page_title {
    color: rgb(255, 255, 255);
}

.b-checkout .panel-heading {
    background: #934367;
}
.b-header_bg {
    background-color: white;
    color: #0c838f;
}
.alert-success {
    color: black;
}
.alert-info {
    background-color: #f9fdff;
}

.progress {
    height: 20px;
}
.progress-bar {
    height: 20px;
}
.b-header_right {
    line-height: 75px;
    height: 75px;
}
.upper-menu a, i {
    color: #0c838f;
    text-decoration: none;
}
.upper-menu i,a:hover {
    color: #0e929e;
}

.b-main_menu-wrapper > ul > li > a {
    text-decoration: none;
    color: #0e929e;
}

.btn > i {
    color: white;
}

.btn-loginlogout {
    background-color: rgb(172, 198, 224);
    color: slategray;
    max-height: 55px;
    overflow: hidden;
}
.btn-loginlogout > a {
    color: rgb(65, 65, 65);
    text-decoration: none;
}
.btn-loginlogout i {
    color: rgb(65, 65, 65);
}

.btn-loginlogout:hover {
    background-color: rgb(196, 227, 255);
    color: slategray;
}
.btn-loginlogout:active {
    background-color: rgb(196, 227, 255);
    color: slategray;
}

.breadcrumb-home {
    color: black
}

.logo-link {
    padding-bottom: 5px;
    text-decoration: underline;
}

.logo-link::before {
    content: url('/img/icons/takuusaatio-logo-tiny.png');
    display: inline;
    width: 15px;
    height: 15px;
    padding-top: 5px;
}

.limit-width-500 {
    max-width: 500px;
}

#content {
    padding-bottom: 10em;
}

.page-item.active .page-link{
    background-color: var(--ts-darkblue);
    border-color: var(--ts-darkblue);
}
.page-link{
    color: var(--ts-darkblue);
}

/* Custom info alerts */
.alert.alert-info {
    background-color: var(--ts-turquoise-light-20);
    border: 2px  solid var(--ts-turquoise-light);
    color: black;
}

/* Responsive tables for mobile */
@media screen and (max-width: 850px) {
    table.table-mobile-responsive {
      border: 0;
      margin-top: 1em;
    }

    table.table-mobile-responsive caption {
      font-size: 1.3em;
    }

    table.table-mobile-responsive thead tr {
        display: flex;
        flex-direction: column;
    }

    table.table-mobile-responsive thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      width: 1px;
    }

    table.table-mobile-responsive tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }

   /*Here we are setting each td display to block*/
    table.table-mobile-responsive td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }

    table.table-mobile-responsive td::before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }

    table.table-mobile-responsive td:last-child {
      border-bottom: 0;
    }

    table.table-mobile-responsive tbody tr {
        border: 2px solid lightgray;
        border-radius: 5px;
    }
}
/* End responsive tables */

/* SmartWizard theme overrides */
#smartwizard {
    border: 0px;
}
#smartwizard .step-content {
    margin-top: 2em;
    margin-left: 0px;
    padding: 0px;
}
#smartwizard .nav-step {
    margin-bottom: 0px;
}
#smartwizard > .nav-tabs {
    border: 1px solid var(--ts-turquoise-dark);
    border-radius: 4px;
}
/*End smartWiz */


/* fontawesome icon for new application/guarantee */
.application-icon {
    font-size: 150px;
    color: var(--ts-darkblue);
}

/* Modal remove borders */
.modal {
    border: 0;
}
.modal .modal-header{
    border: 0;
}
.modal .modal-footer{
    border: 0;
}

/* End modal edits */

/* Section for separating stuff on pages */
section.paddedsection {
    margin-top: 2em;
    margin-bottom: 2em;
}

.form-control {
    height: 44px;
}

.accordion-button {
    background-color: var(--ts-turquoise-light);
    color: white;
}
.accordion-button:not(.collapsed) {
    background-color: var(--ts-turquoise-light);
    color: white;
}

.nav-tabs .nav-link.active {
    color: var(--ts-winered);
    font-weight: 500;
}
.nav-tabs .nav-link:hover {
    font-weight: 500;
    color: var(--ts-turquoise-light);
}

.nav-tabs .nav-link {
    font-weight: 500;
    color: var(--ts-turquoise-dark);
}

.new-message-line {
    display: flex;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
}
.new-message-line > div {
    margin: 1em;
}
.new-message-line > .borders {
   flex-grow: 1;
}


label > a {
    font-size: inherit;
}

.mobilenav {
    margin-bottom: 70px;
}

.btn-default:hover {
    color: rgb(238, 238, 238);
}