* {
  margin: 0;
  padding: 0;
}
:root {
  --pry-color: #49529B;
  --sec-color: #F9B356;
}
html {
  scroll-behavior: smooth;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer {
  margin-top: auto;
  border-top:4px solid var(--pry-color);
}
a {
  text-decoration: none;
  color: #d9534f;
}
img {
  max-width: 100%;
  height: auto;
}
.dots {
  background-image: url('../img/shs/bg-body.gif');
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 1140px;
  }
}
#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 200;
  cursor: pointer;
  background-color: rgba(255,255,255,.4);
}
#backToTop:hover {
  background-color: #ffffff;
}
.text-pry {
  color: var(--pry-color);
}
.logo img{
  height: 80px;
}
.logo-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.pry-line {
  border-bottom: 1px solid var(--pry-color);
}
.bg-purple {
  background:var(--pry-color);
}
.bg-yellow {
  background:var(--sec-color);
}
.info-card * {
  color: #fff;
}
.btn-sec, .btn-red {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 6px;
  padding: 6px 12px;
}
.btn-sec:hover, .btn-red:hover {
  color: #fff;
  background-color: #ED3627;
}
.btn-sec.overlay, .btn-red.overlay {
  background: #ED3627 url('../img/shs/btn-red.png') left bottom repeat-x;
}
.btn-sec.overlay:hover, .btn-red.overlay:hover {
  background: #ED3627 url('../img/shs/btn-red.png') right top repeat-y;
}
.shadow {
  background-color: #ffffff;
}
.btn-purple {
  color: var(--pry-color);
  background: transparent;
  border-color: var(--pry-color);
}
.btn-purple:hover {
  color: var(--pry-color);
  background: #fff;
}
.btn-pry {
  color:#fff;
  background: var(--pry-color);
  border:1px solid var(--pry-color);
}
.btn-pry:hover {
  color: var(--pry-color);
  background: #fff;
}
.btn-grey {
  border: 1px solid #aaa;
}
.bg-tan {
  background-color: #F6F3EC;
}
.bg-pry {
  background-color: var(--pry-color);
}
.bg-sec {
  background-color: var(--sec-color);
}
.bg-grey {
  background-color: #E7E3D9;
}
.form-control {
    height: 48px;
}
textarea.form-control {
    height: 150px;
    resize: none;
}
.resize {
  color: var(--pry-color);
  margin-left: 25px;
  display: flex;
  align-items: center;
}
.resize h5 {
  font-weight: 300;
  margin-right: 10px;
  margin-bottom: 0;
}
.lower, .upper {
  height: 34px;
  width: 34px;
  padding: 0;
}
.lower {
  font-size: 15px;
  margin-right: 5px;
}
.upper {
  font-size: 20px;
}
.navbar {
  padding: 0;
}
.nav-item {
  padding: 8px;
}
.nav-item.active, .nav-item:hover {
  background-color: #7C82BF;
}
.nav-item a {
  color: #fff !important;
}
.navbar-toggler {
  color: #7C82BF;
  border:2px solid #7C82BF;
  padding: 10px;
  margin: 5px 0;
}
.dropdown-menu {
  background-color: var(--pry-color);
}
.dropdown-item:not(:last-child) {
  border-bottom:1px solid #7C82BF;
}
.dropdown-item:hover {
  background-color: #7C82BF;
  color: #fff;
}
.top {
  display: flex;
  align-items: center;
}
.top > div {
  flex-basis: 50%;
}
.gradient-overlay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: -moz-linear-gradient(left, rgba(246,243,236,1) 0%, rgba(246,243,236,1) 2%, rgba(246,243,236,0) 20%);
  background: -webkit-linear-gradient(left, rgba(246,243,236,1) 0%,rgba(246,243,236,1) 2%,rgba(246,243,236,0) 20%);
  background: linear-gradient(to right, rgba(246,243,236,1) 0%,rgba(246,243,236,1) 2%,rgba(246,243,236,0) 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f3ec', endColorstr='#00f6f3ec',GradientType=1 );
}
.gradient-overlay::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: -moz-linear-gradient(left, rgba(246,243,236,0) 80%, rgba(246,243,236,1) 98%, rgba(246,243,236,1) 100%);
  background: -webkit-linear-gradient(left, rgba(246,243,236,0) 80%,rgba(246,243,236,1) 98%,rgba(246,243,236,1) 100%);
  background: linear-gradient(to right, rgba(246,243,236,0) 80%,rgba(246,243,236,1) 98%,rgba(246,243,236,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f6f3ec', endColorstr='#f6f3ec',GradientType=1 );
}
.txt-purple {
  color: #1460ab;
}
.title, .title-red {
  font-size: 2em;
  color: #1460ab;
  font-family: serif;
  font-weight: 600;
}
.title-red {
  color: #E56745;
}
.red-underline {
  border-color: red;
}
.summary img{
  max-height: 200px;
  border-radius: 5px;
}
.find-location {
  background-image: url('../img/shs/bg-location-bar.jpg');
  background-position: right;
  background-size: cover;
  font-size: 1.3em;
  margin-bottom: -4px;
  z-index: 100;
  text-shadow: 3px 3px 30px rgba(150, 150, 150, 0.8);
}
/*
.zip {
  display: flex;
  justify-content: center;
}
.zip button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 0;
}
.zip .form-control {
  width: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-color: red;
} */
.buddy {
  display: flex;
  justify-content: center;
}
.buddy >div {
  flex-basis: 50%;
  background-color: #ffffff;
}
.buddy-link{
  position: relative;
  display: block;
}
.buddy .overlay-color {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 0 16px;
}
.need-help-lower {
  height: 14px;
  background: url('../img/shs/need-help-lower.gif') top center no-repeat;
}
.get-help-lower {
  height: 14px;
  background: url('../img/shs/get-help-lower.gif') top center no-repeat;
}
.need-help .overlay-color {
  background-color: rgba(92,92,144,.7);
}
.get-help .overlay-color {
  background-color: rgba(249,179,86,.7);
}
.divider img {
  margin-top: -13px;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.flex-row {
  display: flex;
}
.node {
  padding: 0 8px;
  text-align: center;
  margin: 6px 0;
}
.node a {
  overflow: hidden !important;
}
.node-heading {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(92,92,144,.7);
}
.slide {
  padding: 0 30px;
}
.carousel-control-prev, .carousel-control-prev:hover {
  font-size: 2em;
  left: -17px;
  width: 50px;
  color: #E03325;
  opacity: 0.7;
}
.carousel-control-next, .carousel-control-next:hover {
  font-size: 2em;
  right: -17px;
  width: 50px;
  color: #E03325;
  opacity: 0.7;
}
.partner {
  background-image: url('../img/shs/bg-learn-more.jpg');
  background-size: cover;
}
.values img, .services img {
  border-radius: 100%;
  height: 100px;
}
.enrich p {
  font-size: 1.2em;
  margin-bottom: 2px;
  font-weight: 300;
}
/* footer */
.footer-row {
  display: flex;
}
.footer-content {
  width: 30%;
  padding: 0 20px;
}
.footer-content:first-child {
  width: 50%;
}
.footer-content p {
  margin-bottom: 5px;
}
.footer-content a {
  text-decoration: underline;
  color: #000000;
}
.footer-content a:hover {
  text-decoration:none;
}
.footer-info {
  background-color: #E7E3D9;
}
.footer-info .container{
  color: #7c878e;
  display: flex;
  justify-content: space-between;
}
.footer-info .container > div {
  width: 50%;
}
.legal a {
  color: #7c878e;
  text-decoration: underline;
}
.legal a:hover {
  text-decoration: none;
}
.social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.links {
  font-size: 2em;
  background-color: #5D6294;
  max-width: 250px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 12px 30px;
}
.links a {
  color: #fff;
  padding: 7px;
}
.links a:hover {
  color: #fff;
  color: var(--sec-color);
}

/* pages */
.page {
  display: flex;
}
.quote {
  font-size: 1.3em;
  font-weight: 800;
  font-family: serif;
  font-style: italic;
}
.page-content {
  background-color: #ffffff;
  flex-basis: 65%;
}
.contact {
  background-color: #E7E3D9;
  flex-basis: 35%;
}
.dark {
  border-color: var(--pry-color);
}
.web {
  display: block;
}
.mobile {
  display: none;
}

@media (min-width: 769px){
  .nav-item:not(:last-child) {
    border-right: 2px solid #7C82BF;
  }
}
@media (min-width: 768px){
  .bg-tan {
      background: #F6F3EC url('../img/shs/bg-header-tan.png') 50% 0 repeat-y;
  }
  .footer-content:not(:last-child) {
    border-right: 2px solid red;
  }
}
@media screen and (max-width:768px) {
  .nav-item.active, .nav-item:hover {
    background-color: transparent;
  }
  .logo-section {
    flex-wrap:wrap;
    justify-content: center;
  }
  .logo {
    margin-bottom: 10px;
  }
  .nav-item {
    padding: 8px;
  }
  .nav-item{
    border-top: 2px solid #7C82BF;
    font-size: 14px;
  }
  .web {
    display: none;
  }
  .mobile {
    display: block;
  }
}
@media screen and (max-width:767px) {
  .top, .buddy {
    display: block;
  }
  .top-content {
    margin-top: 15px;
  }
  .footer-row {
    flex-wrap: wrap;
  }
  .footer-content {
    margin-bottom: 10px;
  }
  .footer-info .container{
    flex-wrap: wrap;
  }
  .footer-info .container > div {
    width: 100%;
  }
  .get-help {
    margin-top: 12px;
  }
  .legal {
    order: 1;
  }
  .page {
    display: block;
  }
  .dual-btns {
    text-align: center;
  }
  .quote img {
    display: none;
  }
  .enrich .container > div{
    flex-wrap: wrap;
  }
  .enrich .container >div >div {
    width: 43%;
  }
}
@media screen and (max-width:575px) {
  .flex-row, .footer-row{
    display: block;
  }
  .footer-content, .footer-content:first-child, .enrich .container >div >div {
    width: 100%;
  }
}
@media screen and (max-width:375px) {
  .resize {
    margin-left: 5px;
  }
  .resize h5 {
    display: none;
  }
}


@media screen and (max-width:580px) {
    [moe] {
        position: static !important;
    }
    [moe] form:not([show]) {
        position: absolute;
        display: block;
        top: 2rem;
        left: 1rem;
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
    }
    .iti-mobile .iti--container {
      top: 0 !important;
      bottom: 0 !important;
      right: 0 !important;

      width: calc(100% - 2rem);
      left: 1rem !important;
    }
}

.accordion .accordion-content {
  display: none;
}
.accordion .accordion-content.show {
  display: block;
}
.accordion .accordion-title {
  cursor: pointer;
}

.appt-title-section {
 width: 50%;
}

.dashboard {
  max-width: 95%;
}
.dashboard .profile-card {
  position: relative;
  padding: 30px 30px 0 30px;
}
.dashboard .profile-card h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 40px;
  color: #fff;
}
.dashboard .profile-card .profile-snapshot {
  background-color: #fff;
  padding: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
    position: absolute;
    bottom: 0;
    width: calc(100% - 60px);
}
.dashboard .profile-card .profile-snapshot .pp-round-container {
  width: 80px;
  height: 80px;
}
.dashboard .profile-card .profile-snapshot .pp-round-container img {
  width: 80px;
  height: 80px;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
    .dashboard .profile-card {
        padding: 15px 15px 0 15px;
    }
    .dashboard .profile-card .profile-snapshot {
        width: calc(100% - 30px);
        padding-bottom: 6px;
    }
    .dashboard .profile-card .profile-snapshot .pp-round-container {
        width: 60px;
        height: 60px;
    }
    .dashboard .profile-card .profile-snapshot .pp-round-container img {
        width: 60px;
        height: 60px;
    }
}
.dashboard .profile-card .profile-snapshot .profile-link {
  font-weight: 500;
  color: #1A1539;
}

.dashboard .account-finance {
  background: linear-gradient(228.77deg, #69C982 -14.18%, #068374 94.11%);
  border-radius: 12px;
  color: #fff;
  padding: 30px;
}
.dashboard .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  border-radius: 3px;
}
.dashboard .icon i {
  margin-top: 6px;
}
.dashboard .icon.green {
  background-color: #57BC80;
}
.dashboard .icon.dark-blue {
  background-color: #395076;
}
.dashboard .icon.secondary{
  background-color: #fec6c0;
}
.dashboard .account-finance h6 {
  font-weight: 600;
  font-size: 18px;
}
.dashboard .account-finance h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 24px;
}
.dashboard .account-finance .btn-grey {
  color: #fff;
  background-color: var(--sec-color);
  padding: 15px 40px;
  box-shadow: none;
  border-radius: 30px;
}
.dashboard .contracts-profiles {
  background: linear-gradient(93.81deg, #1A1539 6.4%, #1E437A 106.01%);
  mix-blend-mode: normal;
  border-radius: 12px;
  padding: 20px 30px;
  color: #fff;
}
.dashboard .contracts-profiles h6 {
  font-weight: 600;
  margin-bottom: 0;
}
.dashboard .contracts-profiles .profiles {

}
.dashboard .contracts-profiles .profiles img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(28, 45, 95, 0.8);
  padding: 2px;
  background-color: #fff;
  margin-right: 10px;
}
.dashboard .card {
  border: none;
}
.dashboard .card .card-header {
  background-color: #fff;
  border: 1px solid #CDCCD3;
  border-radius: 8px;
  padding: 15px;
}
.dashboard .card .card-header h6 {
  font-weight: bold;
}
.cw-55 {
  width: 55px;
  display: inline-block;
}

.dashboard .btn-outline-dark {
  border-color: rgba(0, 0, 0, 0.2);
  color: #1A1539;
}
.dashboard .btn-outline-dark:hover,
.dashboard .btn-outline-dark:focus {
  color: #fff;
}
@media screen and (max-width: 1199px) {
    .fc .fc-button.fc-today-button,
    .fc .fc-button.fc-today-button + .fc-button-group {
        font-size: 13px;
    }
}
.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 10px;
  flex-wrap: nowrap;
}
.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-title,
.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk {
    white-space: nowrap;
}

.fc-col-header thead th {
  background: #FFE6E3;
  color: #EF7F72;
  font-weight: normal;
}

.fc-theme-standard td, .fc-theme-standard th {
  border: 1px solid rgba(239, 127, 114, 0.4);
}
.fc-theme-standard .fc-scrollgrid {
  border: 1px solid rgba(239, 127, 114, 0.4);
  border-right: none;
  border-bottom: none;
}

.fc .fc-daygrid-day-number {
  color: #1A1539;
}

.fc .fc-button {
  text-transform: capitalize;
}

.fc .fc-daygrid-day-number {
  padding: 4px 20px 4px 4px;
}

.dashboard .fc-direction-ltr .fc-daygrid-event.fc-event-end,
.dashboard .fc-direction-rtl .fc-daygrid-event.fc-event-start {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
}
.dashboard .fc-h-event .fc-event-main {
  color: transparent;
}
.dashboard .fc-daygrid-day-events {
  display: flex;
}
.event-popover {
  background: #E4EFFF;
  padding: 15px;
  border-radius: 4px;
}
.popover {
  border-color: transparent;
  max-width: 330px;
}
.popover-body {
  padding: 0;
}

.event-popover h6 {
  background-color: #fff;
  border-radius: 15px;
  padding: 5px 10px;
  color: #567EBA;
  font-weight: 400;
  font-size: 14px;
}
.event-popover .time {
  color: #567EBA;
}
.event-popover h5 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.event-popover h5 a {
  color: #567EBA;
  font-weight: 500;
  font-size: 14px;
}
.event-popover .pro{
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #567EBA;
}

.event-popover.Declined {
  background: #ffe5dd;
}
.event-popover.Declined h6 {
  background-color: #ea430f;
  color: #fff;
}
.event-popover.Declined .time,
.event-popover.Declined h5 a,
.event-popover.Declined .pro {
  color: #ea430f;
}

.event-popover.Confirmed {
  background: #E3F7E9;
}
.event-popover.Confirmed h6 {
  background-color: #5A9269;
  color: #fff;
}
.event-popover.Confirmed .time,
.event-popover.Confirmed h5 a,
.event-popover.Confirmed .pro {
  color: #5A9269;
}

.event-popover.Pending {
  background: #FFFAE3;
}
.event-popover.Pending h6 {
  background-color: #EAA80F;
  color: #fff;
}
.event-popover.Pending .time,
.event-popover.Pending h5 a,
.event-popover.Pending .pro {
  color: #EAA80F;
}

.im-container .im-rhs .im-input textarea {
    height: 60px;
    border-color: #ccc;
    padding: 0.3rem;
    box-shadow: none !important;
}
.im-container .im-rhs .im-input.pr-input textarea {
    height: 150px;
}
.im-container .im-rhs .im-input textarea:focus,
.im-container .im-rhs .im-input textarea:active,
.im-container .im-rhs .im-input textarea:focus-visible {
    /* border: 1px solid #307899 !important; */
}
.im-container .im-rhs .im-input #selected-files .selected-file {
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 2px 20px 2px 5px;
    cursor: pointer;
    position: relative;
    margin-top: 6px;
    margin-right: 6px;
}
.im-container .im-rhs .im-input #selected-files .selected-file:hover {
    color: #b11313;
}
.im-container .im-rhs .im-input #selected-files .selected-file:after {
    position: absolute;
    content: '✕';
    right: 4px;
    color: #b11313;
}
.im-container .im-rhs .im-video-container {
    max-width: 480px;
    display: inline-block;
    position: relative;
    margin-top: 4px;
}
.im-container .im-rhs .im-video-container video {
    max-width: 100%;
}
.im-container .im-rhs .im-video-container .vs-control {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    margin: 0 !important;
    top: 0;
    right: 0;
    background: rgba(238, 238, 238, 0.75) !important;
    border: 0 !important;
    border-bottom-left-radius: 3px;
    text-align: right !important;
    width: auto !important;
    font-size: 11px !important;
}
.im-container .im-rhs .im-video-container:hover .vs-control {
    opacity: 1;
    background: rgba(238, 238, 238, 1) !important;
}
.im-container .im-rhs .im-video-container .vs-control select {
    width: auto !important;
    border: 0 !important;
}
.im-message.proofreading {
    border: 2px solid #9aceb8;
    padding: 4px !important;
    background: #f1fff9;
    border-radius: 5px;
}
.msg-header {
    background-color: #FB6108;
    color: #fff;
}
.msg-input {
    border: 1px solid #ccc;
    background-color: #ffffff;
    padding: 0 !important;
    border-radius: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible !important;
}
.msg-input textarea, .msg-input textarea:focus{
    outline:0;
    box-shadow: none;
    border:none;
    resize: none;
    width: 100%;
    height: 35px !important;
    margin-left: 12px;
}
.im-btn-send {
    margin-right: -1px !important;
    margin-top: -1px !important;
    margin-bottom: -1px !important;
}
.btn-input, .btn-input:hover, .btn-input:focus {
    /*height: 40px;
    width: 44px;
    font-size: 18px;
    padding: 0;
    display: grid;
    place-items:center;
    border-radius: 100%;
    background: #32abd1;
    color: #fff;*/
    margin-right: -1px !important;
    margin-top: -1px !important;
    margin-bottom: -1px !important;
    z-index: 1;
}
.btn-input i {
    margin-left: -4px;
}
.im-date-separator {
    height: 20px;
    line-height: 20px;
    position: relative;
    text-align: center;
    margin: 16px 0;
}
.im-date-separator::before {
    border-top: 1px solid #0003;
    position: absolute;
    width: 100%;
    content: '';
    top: 9px;
    left: 0;
}
.im-date-separator>span {
    position: absolute;
    background: #fff;
    top: 0;
    left: calc(50% - 70px);
    width: 140px;
    color: #1A153999;
    font-weight: normal;
}
.im-message .on-hover-visible-header-item {
    display: none;
}
.im-message:hover .on-hover-visible-header-item {
    display: block;
}
.video-intro {
  display: grid;
  place-items: center;
}
.video-intro video {
  max-height: 500px;
  width: 100%;
  object-fit: contain;
}
.flex-gallery {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.gallery-upload-photo {
  width: 100%;
  cursor: pointer;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px 15px;
  background-color: #EFEFEF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-upload-photo input[type=file] {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.gallery-upload-photo i {
  font-size: 50px;
  color: #bfbcbc;
  cursor: pointer;
}
.up-img-container {
  height: 170px;
  width: 180px;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 5px;
}
.up-img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.up-img-container a {
  position: absolute;
  top: 0;
  right: 5px;
  cursor: pointer;
  text-align: center;
}
ul.flex-gallery {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.note-editor button.note-btn {
  width: auto !important;
}
.social-share-icon {
    width: 32px;
    height: 30px;
}
.word-break-all {
    word-break: break-all;
}


/* square radio */
input.square[type=radio] {
    height: 20px;
    width: 20px;
    border-radius: 0;
    appearance: none;
    background: #fff;
    border: 1px solid #ccc;
    position: relative;
}
input.square[type=radio]:hover {
    background-color: #ccc;
}
input.square[type=radio]:checked:after {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 14px;
    height: 14px;
    content: '';
    background: var(--sec-color);
}
.select2-container {
  width: 100% !important;
}
.select2-container .select2-selection--single {
  height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 81%;
}
.page-header {
  font-weight: normal !important;
}
