@charset "UTF-8";
body {
  background-color: #008b9b;
  color: #FFF;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.285;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

a {
  color: #FFF;
  text-decoration: none;
}
a:hover {
  color: #FFF;
}

header {
  width: 100%;
  height: 50px;
  position: fixed !important;
  top: 0;
  color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  background-color: rgb(0, 139, 155);
  z-index: 10;
  transition: background-color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  font-weight: 300;
}
@media only screen and (min-width: 992px) {
  header {
    height: 100px;
    background-color: rgba(0, 159, 175, 0.7);
  }
}
header .mob {
  width: 100%;
}
header .mob a {
  font-weight: normal;
  display: inline-block;
}
header .mob a.menu {
  background-image: url(/css/ham.svg);
  background-size: 30px 20px;
  background-repeat: no-repeat;
  background-position: center;
  width: 60px;
  height: 100%;
  position: absolute;
  right: 0;
  transition: 1s all;
}
@media only screen and (min-width: 992px) {
  header .mob a.menu {
    display: none;
  }
}
header .mob a:hover {
  background-color: transparent !important;
}
header img {
  transition: width 0.1s;
  width: 141px;
}
@media only screen and (min-width: 992px) {
  header img {
    width: 212px;
  }
}
header img.desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  header img.desktop {
    display: inline-block;
  }
}
@media only screen and (min-width: 992px) {
  header img.mobile {
    display: none;
  }
}
header nav {
  display: none;
  position: relative;
  z-index: 1;
  height: 100px;
}
@media only screen and (min-width: 992px) {
  header nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
  }
}
header ul {
  margin: 0;
  list-style: none;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
header li {
  height: 100%;
  display: inline-block;
  padding: 0;
  position: relative;
}
header li form {
  height: 100%;
}
header a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 4px 10px;
  text-transform: uppercase;
}
header li.active a {
  text-decoration: none;
  color: #FFF;
  background-color: #007487;
}
header a:hover {
  background-color: #007487;
  text-decoration: none;
}
header li.active > a {
  font-weight: 700;
}
header li:hover > ul {
  display: block;
}
header li li a {
  text-transform: none;
}
header ul ul {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 159, 175, 0.8);
  z-index: 2;
  height: auto;
}
header ul ul a {
  display: block;
}
header ul ul li {
  display: block;
}
header ul ul ul {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 100%;
}

header.minimal {
  height: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 992px) {
  header.minimal {
    border-bottom: 1px solid #008b9b;
  }
}
header.minimal img {
  width: 130px;
}
header.minimal nav {
  height: 100%;
}
@media only screen and (max-width: 992px) {
  header.minimal a.menu {
    filter: grayscale(1) invert(1);
    opacity: 0.4;
  }
}

ul.tags {
  margin: 2em 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-inline-start: 0;
  font-size: 85%;
}
ul.tags a {
  padding: 4px 20px 4px 0;
  color: #FFF;
  font-weight: 700;
}

footer {
  width: 100%;
  background-color: #007487;
  border-top-width: 0;
  border-top-style: solid;
  border-top-color: #FFF;
  transition: all 0.6s;
}
@media only screen and (min-width: 768px) {
  footer {
    border-top-width: 56px;
  }
}
footer a {
  color: #FFF;
}
footer a:hover {
  color: inherit;
  text-decoration: underline;
}
footer a.fb {
  margin-top: 18px;
  margin-bottom: 10px;
  border-radius: 50%;
  transition: all 0.4s;
  background-color: #008b9b;
  padding: 4px;
}
footer a.fb img {
  width: 42px;
}
@media only screen and (min-width: 768px) {
  footer a.fb {
    background-color: #007487;
  }
}
@media only screen and (min-width: 768px) {
  footer a.fb:hover {
    background-color: #3b5998;
  }
}
footer a.mail {
  font-weight: bold;
  font-size: 12px;
}
footer a.mail.desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  footer a.mail.desktop {
    display: block;
    margin-bottom: 13px;
    font-weight: 300;
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  footer a.mail.mobile {
    display: none;
  }
}
footer .topleft {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  footer .topleft {
    background-color: #008b9b;
  }
}
@media only screen and (min-width: 768px) {
  footer .topleft {
    align-items: flex-end;
  }
}
footer .topright {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 115px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  footer .topright {
    align-items: flex-end;
  }
}
footer .topright a.phone {
  margin-bottom: 13px;
}
footer .bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 0;
  background-color: #009faf;
  position: relative;
}
@media only screen and (min-width: 768px) {
  footer .bottom {
    background-color: transparent;
    padding-left: 22px !important;
  }
}
@media only screen and (max-width: 768px) {
  footer .bottom {
    text-align: center;
    min-height: 130px;
    font-size: 12px;
  }
}
footer .bottom img.logo {
  width: 175px;
  display: block;
}
@media only screen and (max-width: 768px) {
  footer .bottom img.logo {
    display: none;
  }
}
footer .bottom a {
  display: block;
}
@media only screen and (max-width: 768px) {
  footer .bottom div.copy {
    color: #007487;
    font-weight: 700;
  }
}
footer .bottom .verticalruler {
  width: 1px;
  height: calc(100% - 44px);
  position: absolute;
  margin-top: 22px;
  top: 0;
  left: 0;
  background-color: #FFF;
  transition: height 1s;
  transition-delay: 1s;
}
@media only screen and (max-width: 768px) {
  footer .bottom .verticalruler {
    height: 0px;
  }
}

table {
  width: 100%;
  max-width: 980px;
  margin: 2em 0;
}
table tr {
  background-color: rgba(255, 255, 255, 0.08);
}
table tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.2);
}
table td {
  padding: 8px 4px;
  width: unset !important;
}
@media only screen and (min-width: 768px) {
  table td {
    padding: 8px;
  }
}

h1, h2, h3, h4, h5 {
  color: #FFF;
}

h1, h2 {
  flex-basis: 100%;
  font-weight: 100;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.225;
  font-size: 21px;
}
@media only screen and (min-width: 768px) {
  h1, h2 {
    font-size: 40px;
  }
}

aside h2 {
  font-weight: 700;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  aside h2 {
    font-size: 29px;
  }
}

h3 {
  font-weight: bold;
}

hr.small {
  width: 18%;
}

a.borderbutton {
  display: inline-block;
  min-width: 140px;
  text-align: center;
  font-weight: bold;
  color: #FFF;
  padding: 14px 14px;
  border: 1px solid #FFF;
  text-transform: uppercase;
  text-decoration: none !important;
  margin-bottom: 2em;
}
@media only screen and (min-width: 992px) {
  a.borderbutton {
    min-width: 280px;
    padding: 20px 14px;
  }
}

a.borderbutton:hover {
  background-color: #FFF;
  color: #008b9b;
}

a.borderbutton.small {
  min-width: unset;
  padding: 14px 28px;
}
@media only screen and (max-width: 992px) {
  a.borderbutton.small {
    padding: 10px 16px;
  }
}

main {
  background-color: #008b9b;
  flex-basis: 100%;
}
@media only screen and (min-width: 992px) {
  main {
    flex-basis: 70%;
    width: 70%;
    min-height: calc(100vh - 300px);
  }
}

aside {
  background-color: #007487;
  flex-basis: 100%;
}
@media only screen and (min-width: 992px) {
  aside {
    flex-basis: 30%;
    width: 30%;
    min-height: 100vh;
  }
}

@media only screen and (min-width: 992px) {
  .sidebarimportant aside {
    min-width: 400px;
  }
}

#mobmenumodal .modal-dialog {
  margin: 0;
  background-color: #007487;
  height: 100%;
}
#mobmenumodal .modal-content {
  background-color: transparent;
  border: none;
}
#mobmenumodal .closer {
  display: flex;
  justify-content: flex-end;
  background-color: #005360;
  padding: 19px 32px;
  border-bottom: 1px solid #008b9b;
}
#mobmenumodal nav {
  display: block;
}
#mobmenumodal nav ul {
  list-style: none;
  padding-inline-start: 0;
}
#mobmenumodal nav ul li a {
  position: relative;
  display: block;
  color: #FFF;
  text-transform: uppercase;
  padding: 1.2em 32px;
  font-weight: 700;
  background-color: #005360;
  border-bottom: 1px solid #008b9b;
  text-decoration: none !important;
}
#mobmenumodal nav ul li div.openableholder {
  position: relative;
  background-color: #005360;
  border-bottom: 1px solid #008b9b;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
}
#mobmenumodal nav ul li div.openableholder a {
  border-bottom: 0;
}
#mobmenumodal nav ul li div.openableholder a.openable {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  font-size: 1.3em;
  background-color: transparent;
  display: flex;
  align-items: center;
}
#mobmenumodal nav ul li ul li a {
  font-weight: 300;
  background-color: #00606f;
}

.flexcenterize {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-dialog .closer a {
  width: 34px;
  height: 34px;
  background-image: url(/css/close.svg);
  background-size: contain;
}

@media only screen and (max-width: 992px) {
  img.img-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

a.opencollapse {
  position: relative;
}
a.opencollapse span {
  border: solid #FFF;
  border-width: 0 1px 1px 0;
  display: inline;
  cursor: pointer;
  padding: 3px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5%;
  transform: rotate(-135deg);
  transition: 0.3s all ease-in-out;
  margin-top: 8px;
}

a.opencollapse.collapsed span {
  transform: rotate(45deg);
  margin-top: -4px;
}

div.limiter {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) {
  div.limiter {
    flex-wrap: nowrap;
  }
}

@media only screen and (max-width: 992px) {
  div.limiter.swapsidesonmobile {
    flex-direction: column-reverse;
  }
}

div.limiter.swapsides {
  flex-direction: row-reverse;
}

div.limiter.swapsidesonalldevice {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 992px) {
  div.limiter.swapsidesonalldevice {
    flex-direction: column-reverse;
  }
}

div.ruler {
  width: 18%;
  height: 1px;
  background-color: #FFF;
}

section.slipsbelowheader {
  padding-top: 60px;
}
@media only screen and (min-width: 992px) {
  section.slipsbelowheader {
    padding-top: 120px;
  }
}

aside section.slipsbelowheader {
  padding-top: 8px;
}
@media only screen and (min-width: 992px) {
  aside section.slipsbelowheader {
    padding-top: 120px;
  }
}

article.metrotile {
  background-color: #1A1A1A;
  transition: background-color 0.6s;
  color: #008b9b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 258px;
  padding: 5%;
  font-size: 12px;
}
@media only screen and (min-width: 992px) {
  article.metrotile {
    background-color: #007487;
    font-size: 15px;
  }
}
article.metrotile h3 {
  color: #008b9b;
  font-size: 12px;
  line-height: 1.33;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  article.metrotile h3 {
    padding: 0 20%;
    font-size: 15px;
  }
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 260px;
  padding: 10%;
}
.box .title h2 {
  color: #008b9b;
}
@media only screen and (min-width: 576px) {
  .box .title h2 {
    color: #FFF;
  }
}

a.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 60px;
  background-color: #FFF;
  color: #008b9b !important;
  position: absolute;
  text-decoration: none !important;
}
@media only screen and (max-width: 1200px) {
  a.arrow {
    display: none;
  }
}

a.arrow.left {
  left: -100px;
  top: 50%;
}
@media only screen and (max-width: 1200px) {
  a.arrow.left {
    background-color: #008b9b;
    color: #FFF;
  }
}

a.arrow.right {
  right: -100px;
  top: 50%;
}
@media only screen and (max-width: 1200px) {
  a.arrow.right {
    background-color: #007487;
    color: #FFF;
  }
}

div.mobtitbar {
  display: none;
  padding-top: 168px;
  padding-left: 15px;
  background-color: #009faf;
}
@media only screen and (max-width: 992px) {
  div.mobtitbar {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  div.mobtitbar {
    padding-top: 108px;
  }
}
div.mobtitbar h2 {
  font-weight: bold;
  font-size: 29px;
}

div.mobarrowbar {
  display: none;
  justify-content: flex-end;
  background-color: #009faf;
  padding-right: 15px;
}
@media only screen and (max-width: 992px) {
  div.mobarrowbar {
    display: flex;
  }
}
div.mobarrowbar a.arrow {
  color: #FFF !important;
  position: unset;
  display: flex !important;
  flex-basis: 60;
}

/* in-page scroll design */
.nicescroll-rails-vr {
  border: none;
}
.nicescroll-rails-vr .nicescroll-cursors {
  margin: 3px 0;
}

.nicescroll-rails::before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: #FFF;
  position: absolute;
  top: 3px;
  left: 8px;
}

.scrolldis {
  position: relative;
}
@media only screen and (min-width: 576px) {
  .scrolldis {
    max-height: 260px;
    overflow: hidden;
  }
}
.scrolldis .wrap {
  padding: 24px 0;
}
.scrolldis article.rolling {
  text-align: left;
  font-size: 12px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 576px) {
  .scrolldis article.rolling {
    font-size: 1em;
    display: none;
  }
}
.scrolldis article.rolling h3 {
  font-size: 1em;
}
.scrolldis article.rolling .ruler {
  background-color: #008b9b;
  margin: 18px 0;
}
@media only screen and (max-width: 576px) {
  .scrolldis article.rolling:nth-of-type(1) {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .scrolldis article.rolling:nth-of-type(2) {
    display: block;
  }
}
@media only screen and (min-width: 576px) {
  .scrolldis a.more {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .scrolldis .ruler.closer {
    display: none;
  }
}

.sl-overlay {
  background: #000 !important;
}

section.why {
  color: #FFF;
  background-color: #FFF;
  position: relative;
  padding-bottom: 0;
  transition: all 0.6s;
}
@media only screen and (min-width: 768px) {
  section.why {
    padding-bottom: 63px;
  }
}
section.why .bgwide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 685px;
  display: flex;
  background-image: url(/img/headernew.jpg);
  background-size: cover;
}
@media only screen and (min-width: 992px) {
  section.why .bgwide {
    height: 804px;
    background-image: none;
  }
}
section.why .bgwide .left {
  flex-basis: 50%;
}
@media only screen and (min-width: 992px) {
  section.why .bgwide .left {
    background-color: #007487;
  }
}
section.why .bgwide .right {
  flex-basis: 50%;
}
@media only screen and (min-width: 992px) {
  section.why .bgwide .right {
    background-image: url(/img/headernew.jpg);
    background-position: top;
    background-size: cover;
  }
}
section.why .title {
  padding-top: 120px;
  flex-basis: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background-color: transparent !important;
}
section.why .title h2 {
  font-weight: 700;
  font-size: 2.57em;
  text-transform: none;
}
section.why .intro {
  flex-basis: 50%;
  background-color: #007487;
}
@media only screen and (min-width: 992px) {
  section.why .intro {
    background-color: transparent;
  }
}
section.why .box {
  background-color: #008b9b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15% 4px 12%;
}
section.why .box img {
  max-width: 80%;
}
section.why .box .divider {
  width: 100px;
  border-bottom: 1px solid #FFF;
  position: absolute;
  bottom: 92px;
}
section.why .box a {
  color: #FFF;
  font-size: 15px;
  text-transform: uppercase;
}
section.why .box.uh {
  background-color: #009faf;
}
section.why .box.dns {
  background-color: #009faf;
}
@media only screen and (min-width: 992px) {
  section.why .box.dns {
    background-color: #008b9b;
  }
}
section.why .box.labor {
  background-color: #007487;
}

section.ultra {
  background-color: #1A1A1A;
  transition: all 0.6s;
  color: #008b9b;
  border-bottom-color: #FFF;
  border-bottom-style: solid;
  border-bottom-width: 0px;
}
@media only screen and (min-width: 576px) {
  section.ultra {
    background-color: #007487;
    color: #FFF;
    border-bottom-width: 70px;
  }
}
@media only screen and (max-width: 576px) {
  section.ultra .box {
    border-bottom: 1px solid #008b9b;
    padding: 5% 10%;
    min-height: 0;
  }
}
section.ultra .box a {
  color: #008b9b;
  font-weight: bold;
}
@media only screen and (min-width: 576px) {
  section.ultra .box a {
    color: #FFF;
  }
}
section.ultra .price {
  font-weight: bold;
  margin-top: 39px;
}
section.ultra .metrotile {
  background-color: #1A1A1A;
  height: 100%;
}
@media only screen and (min-width: 576px) {
  section.ultra .metrotile {
    background-color: #009faf;
    color: #FFF;
  }
}
section.ultra .metrotile .ruler {
  width: 40%;
}
@media only screen and (max-width: 576px) {
  section.ultra .metrotile .ruler {
    background-color: #008b9b;
  }
}
@media only screen and (min-width: 576px) {
  section.ultra .metrotile h3 {
    color: #FFF;
  }
}
section.ultra .metrotile .details {
  min-height: 2em;
}
section.ultra .metrotile .values {
  min-height: 1em;
}
@media only screen and (max-width: 576px) {
  section.ultra .ruler {
    background-color: #008b9b;
  }
}
@media only screen and (max-width: 576px) {
  section.ultra .container .row .col-6:nth-child(1) {
    border-right: 1px solid #008b9b;
    border-bottom: 1px solid #008b9b;
  }
}
@media only screen and (min-width: 576px) {
  section.ultra .container .row .col-6:nth-child(1) .metrotile {
    background-color: #007487;
  }
}
@media only screen and (max-width: 576px) {
  section.ultra .container .row .col-6:nth-child(2) {
    border-bottom: 1px solid #008b9b;
  }
}
@media only screen and (min-width: 576px) {
  section.ultra .container .row .col-6:nth-child(2) .metrotile {
    background-color: #008b9b;
  }
}
@media only screen and (max-width: 576px) {
  section.ultra .container .row .col-6:nth-child(3) {
    border-right: 1px solid #008b9b;
  }
}
@media only screen and (min-width: 576px) {
  section.ultra .container .row .col-6:nth-child(3) .metrotile {
    background-color: #008b9b;
  }
}

section.intro .picme {
  background-image: url(/img/intro.jpg);
  background-size: cover;
  background-position: bottom left;
}
section.intro .box {
  text-align: left;
}
@media only screen and (min-width: 576px) {
  section.intro .box {
    background-color: #008b9b;
  }
}
@media only screen and (max-width: 768px) {
  section.intro .box {
    background-image: url(/img/intro.jpg);
    background-size: cover;
    background-position: bottom left;
  }
}
section.intro .box h2 {
  color: #FFF;
}

section.newsopinions {
  transition: all 0.6s;
  border-bottom-color: #FFF;
  border-bottom-style: solid;
  border-bottom-width: 0px;
}
@media only screen and (min-width: 576px) {
  section.newsopinions {
    border-bottom-width: 70px;
  }
}
section.newsopinions .box {
  text-align: left;
}
section.newsopinions .box.news {
  background-color: #007487;
}
section.newsopinions .box.news h3 {
  color: #009faf;
}
section.newsopinions .box.news a:hover {
  text-decoration: none;
}
section.newsopinions .box.news a:hover h3 {
  color: #FFF;
}
section.newsopinions h2 {
  color: #FFF !important;
}
section.newsopinions .picme {
  background-image: url(/img/news.jpg);
  background-size: cover;
  background-position: bottom left;
}
section.newsopinions .date {
  color: #009faf;
}

section.ep {
  background-color: #1A1A1A;
  transition: all 0.6s;
  color: #008b9b;
}
@media only screen and (min-width: 576px) {
  section.ep {
    background-color: #007487;
    color: #FFF;
  }
}
@media only screen and (max-width: 576px) {
  section.ep .box {
    border-bottom: 1px solid #008b9b;
    padding: 5% 10%;
    min-height: 0;
  }
}
section.ep .title {
  text-align: left;
}
@media only screen and (max-width: 576px) {
  section.ep .ruler {
    background-color: #008b9b;
  }
}
section.ep article.metrotile {
  min-height: unset;
  height: 61px;
  align-items: center;
  border-right-color: #008b9b;
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: #008b9b;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
@media only screen and (min-width: 576px) {
  section.ep article.metrotile {
    background-color: #009faf;
    height: 97px;
  }
}
@media only screen and (max-width: 576px) {
  section.ep article.metrotile {
    border-bottom-color: #007487;
  }
}
section.ep article.metrotile h3 {
  line-height: 1.33em;
  font-size: 9px;
  color: #007487;
  text-transform: none;
  padding: 4px;
}
@media only screen and (min-width: 576px) {
  section.ep article.metrotile h3 {
    color: #FFF;
  }
}
@media only screen and (min-width: 992px) {
  section.ep article.metrotile h3 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 576px) {
  section.ep .col-6:nth-child(2n) article.metrotile {
    border-right-style: none;
  }
}

article.gallerytile {
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
  background-color: #004859;
}
article.gallerytile .imgholder, article.gallerytile .titleholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
article.gallerytile .imgholder img, article.gallerytile .titleholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
article.gallerytile .imgholder h2, article.gallerytile .titleholder h2 {
  font-size: 12px;
  font-weight: 700;
  padding: 6%;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  article.gallerytile .imgholder h2, article.gallerytile .titleholder h2 {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  article.gallerytile .imgholder h2, article.gallerytile .titleholder h2 {
    padding: 16%;
  }
}
@media only screen and (min-width: 992px) {
  article.gallerytile a {
    opacity: 0.9;
    transition: 0.3s all;
  }
}
@media only screen and (min-width: 992px) {
  article.gallerytile a:hover {
    opacity: 1;
  }
}

section.news {
  position: relative;
}
section.news .date {
  margin: 1em 0;
  color: #007487;
  font-weight: 700;
}
section.news .lead {
  margin-top: 1em;
  font-weight: 700;
  font-size: 1em;
}
section.news img.main {
  margin: 1em 0;
}
section.news a {
  font-weight: bold;
}
section.news a:hover {
  text-decoration: none;
}
section.news a:hover h3 {
  color: #FFF !important;
}

@media only screen and (max-width: 992px) {
  section.news.details {
    padding-top: 20px;
  }
}
section.news.details .ruler {
  background-color: #007487;
}

@media only screen and (min-width: 992px) {
  section.news.sidelist {
    padding-left: 48px;
  }
}
section.news.sidelist .ruler {
  margin-bottom: 2em;
}
section.news.sidelist .scrolldis {
  margin-left: 0;
  max-height: 600px;
}
@media only screen and (max-width: 992px) {
  section.news.sidelist h2 {
    font-weight: 100;
    margin-top: 14px;
    font-size: 21px;
  }
}
section.news.sidelist h2 span {
  display: none;
}
@media only screen and (max-width: 992px) {
  section.news.sidelist h2 span {
    display: inline;
  }
}
section.news.sidelist h3, section.news.sidelist .date {
  color: #009faf;
}
@media only screen and (max-width: 992px) {
  section.news.sidelist h3, section.news.sidelist .date {
    color: #007487;
  }
}
section.news.sidelist .date {
  font-weight: normal;
}

@media only screen and (max-width: 992px) {
  .row.newsside {
    background-color: #009faf;
  }
}

@media only screen and (max-width: 992px) {
  .row.newscont {
    background-color: #007487;
  }
}
.row.newscont .ruler:last-of-type {
  margin-bottom: 2em;
}

section.contacts {
  text-align: left;
}
section.contacts .mapholder {
  min-height: 300px;
}
@media only screen and (min-width: 576px) {
  section.contacts .mapholder {
    min-height: 412px;
  }
}
section.contacts h1 {
  margin-top: 1em;
}
section.contacts h2 {
  padding-top: 20px;
}
section.contacts .ruler {
  margin-top: 24px;
  margin-bottom: 24px;
}
section.contacts h3, section.contacts h4 {
  font-size: 12px;
}
@media only screen and (min-width: 576px) {
  section.contacts h3, section.contacts h4 {
    font-size: 14px;
  }
}
section.contacts a {
  font-weight: bold;
}
section.contacts hr {
  border-color: #009faf;
  width: 18%;
  margin-left: 0;
  text-align: left;
  margin-top: 22px;
  margin-bottom: 22px;
}
section.contacts h4 {
  color: #009faf;
  margin-top: 20px;
  margin-bottom: 0.3em;
  font-weight: bold;
}
section.contacts h4 span {
  font-weight: 300;
}
section.contacts p.please {
  color: #FFF;
}
@media only screen and (max-width: 992px) {
  section.contacts {
    padding-top: 0;
  }
}

.contactsidetop .mobtitbar {
  padding-bottom: 4em;
}

.limiter.contacts aside {
  background-color: #006475;
  min-height: unset;
}

.bottomcontacts h3 {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
}
.bottomcontacts h3 span {
  font-weight: 300;
}
.bottomcontacts .ruler {
  margin: 1em 0;
}
.bottomcontacts main {
  background-color: #006475;
}
.bottomcontacts aside {
  background-color: #007487 !important;
}
@media only screen and (min-width: 576px) {
  .bottomcontacts img.entrance {
    max-width: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .bottomcontacts img.entrance {
    width: 33%;
  }
}

section.investigationlist {
  padding-top: 0 !important;
}
@media only screen and (min-width: 992px) {
  section.investigationlist {
    padding-top: 120px !important;
    margin-top: -20px;
  }
}
section.investigationlist article {
  transition-delay: 1.6s;
  transition: background-color 0.6s;
}
section.investigationlist article .leftbox {
  transition-delay: 0.6s;
  transition: background-color 1s;
}
section.investigationlist article .rightbox {
  transition-delay: 1.6s;
  transition: background-color 0.6s;
}
section.investigationlist article:nth-of-type(5n+1).doctors {
  background-color: #005d6e;
}
section.investigationlist article:nth-of-type(5n+1) .leftbox {
  background-color: #009faf;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+1) .leftbox {
    background-color: #005d6e;
  }
}
section.investigationlist article:nth-of-type(5n+1) .rightbox {
  background-color: #009faf;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+1) .rightbox {
    background-color: #006475;
  }
}
section.investigationlist article:nth-of-type(5n+2).doctors {
  background-color: #007a8a;
}
section.investigationlist article:nth-of-type(5n+2) .leftbox {
  background-color: #008b9b;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+2) .leftbox {
    background-color: #007a8a;
  }
}
section.investigationlist article:nth-of-type(5n+2) .rightbox {
  background-color: #008b9b;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+2) .rightbox {
    background-color: #008b9b;
  }
}
@media only screen and (max-width: 992px) {
  section.investigationlist article:nth-of-type(5n+2) .rightbox .sublinklist a {
    color: #005360;
  }
}
section.investigationlist article:nth-of-type(5n+3).doctors {
  background-color: #008999;
}
section.investigationlist article:nth-of-type(5n+3) .leftbox {
  background-color: #007487;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+3) .leftbox {
    background-color: #008999;
  }
}
section.investigationlist article:nth-of-type(5n+3) .rightbox {
  background-color: #007487;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+3) .rightbox {
    background-color: #009faf;
  }
}
@media only screen and (max-width: 992px) {
  section.investigationlist article:nth-of-type(5n+3) .rightbox .sublinklist a {
    color: #005360;
  }
}
section.investigationlist article:nth-of-type(5n+4).doctors {
  background-color: #007a8a;
}
section.investigationlist article:nth-of-type(5n+4) .leftbox {
  background-color: #00606f;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+4) .leftbox {
    background-color: #007a8a;
  }
}
section.investigationlist article:nth-of-type(5n+4) .rightbox {
  background-color: #00606f;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+4) .rightbox {
    background-color: #008b9b;
  }
}
@media only screen and (max-width: 992px) {
  section.investigationlist article:nth-of-type(5n+4) .rightbox .sublinklist a {
    color: #009faf;
  }
}
section.investigationlist article:nth-of-type(5n+5).doctors {
  background-color: #005d6e;
}
section.investigationlist article:nth-of-type(5n+5) .leftbox {
  background-color: #005360;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+5) .leftbox {
    background-color: #005d6e;
  }
}
section.investigationlist article:nth-of-type(5n+5) .rightbox {
  background-color: #005360;
}
@media only screen and (min-width: 992px) {
  section.investigationlist article:nth-of-type(5n+5) .rightbox {
    background-color: #006475;
  }
}
section.investigationlist article:nth-of-type(5n+5) .rightbox a {
  color: #FFF;
}

section.investigationlist.booking {
  margin-top: 0px;
}

@media only screen and (max-width: 992px) {
  section.investigationlist.typeindetail {
    padding-top: 3em !important;
  }
}
section.investigationlist.typeindetail h2 {
  font-weight: bold;
  font-size: 12px;
}
@media only screen and (min-width: 992px) {
  section.investigationlist.typeindetail h2 {
    font-size: 15px;
  }
}

.flybox {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  width: 80%;
  transition: 1s top;
}
@media only screen and (min-width: 992px) {
  .flybox {
    width: 24%;
    margin-top: 0;
    position: fixed;
    top: calc(50vh - 90px);
    left: 3%;
  }
}
.flybox h1 {
  font-size: 29px;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  .flybox h1 {
    font-size: 32px;
    letter-spacing: -0.4px;
    font-weight: 100;
  }
}
@media only screen and (min-width: 1200px) {
  .flybox h1 {
    font-size: 40px;
  }
}
.flybox .ruler {
  margin-bottom: 1.4em;
}
.flybox p {
  margin-bottom: 1.4em;
  max-width: 320px;
  font-weight: bold;
}
.flybox a.borderbutton {
  max-width: 240px;
}
@media only screen and (min-width: 992px) {
  .flybox a.borderbutton {
    min-width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .flybox.atbottom {
    top: calc(50vh - 200px);
  }
}

article.invbox {
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 992px) {
  article.invbox {
    flex-direction: column;
  }
}
article.invbox .leftbox {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 60px;
  display: flex;
  background-color: #007487;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  article.invbox .leftbox {
    flex-basis: 296px;
    height: 296px;
    flex-direction: column;
  }
}
article.invbox .leftbox h2 {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  article.invbox .leftbox h2 {
    display: none;
  }
}
article.invbox .leftbox a.openit {
  display: none;
}
@media only screen and (min-width: 992px) {
  article.invbox .leftbox a.openit {
    display: block;
    width: 33%;
    min-width: unset;
  }
}
article.invbox .leftbox a.opencollapse {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  article.invbox .leftbox a.opencollapse {
    justify-content: center;
    cursor: default;
  }
}
@media only screen and (min-width: 992px) {
  article.invbox .leftbox a.opencollapse h2, article.invbox .leftbox a.opencollapse span {
    display: none;
  }
}
article.invbox .leftbox a.opencollapse:hover {
  text-decoration: none;
}
article.invbox .leftbox .icon {
  width: 22%;
  height: 60px;
  margin-right: 4%;
}
@media only screen and (min-width: 992px) {
  article.invbox .leftbox .icon {
    width: 110px;
    height: 90px;
    margin-bottom: 12px;
    margin-right: 0;
  }
}
article.invbox .leftbox .icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
@media only screen and (min-width: 992px) {
  article.invbox .leftbox .icon img {
    width: 100%;
    width: 100%;
  }
}
article.invbox .rightbox {
  flex-grow: 100;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  article.invbox .rightbox {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media only screen and (min-width: 992px) {
  article.invbox .rightbox .collapse {
    display: block !important;
    height: auto !important;
  }
}
@media only screen and (min-width: 992px) {
  article.invbox .rightbox .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}
article.invbox .rightbox .collapsed {
  display: block;
  height: auto !important;
}
article.invbox .rightbox h2 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 1.2em;
}
@media only screen and (max-width: 992px) {
  article.invbox .rightbox h2 {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  article.invbox .rightbox a.more {
    display: none;
  }
}
article.invbox .rightbox .sublinklist {
  margin-bottom: 1em;
}
@media only screen and (max-width: 992px) {
  article.invbox .rightbox .sublinklist {
    display: flex;
    flex-direction: column;
  }
}
article.invbox .rightbox .sublinklist a {
  color: #FFF;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.33em;
  transition: all 1s;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) {
  article.invbox .rightbox .sublinklist a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 992px) {
  article.invbox .rightbox .sublinklist a {
    color: #005360;
    margin-bottom: 8px;
  }
}
article.invbox .rightbox .sublinklist a:hover {
  text-decoration: none !important;
}
article.invbox .rightbox .sublinklist a::after {
  content: "•";
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  article.invbox .rightbox .sublinklist a::after {
    display: none;
  }
}
article.invbox .rightbox .sublinklist a:last-of-type::after {
  display: none;
}
article.invbox.doctors {
  font-size: 14px;
}
article.invbox.doctors h2, article.invbox.doctors h3 {
  margin-bottom: 0;
}
article.invbox.doctors h3 {
  font-size: 1rem;
}
article.invbox.doctors p {
  margin-bottom: 0.7em;
}
article.invbox.doctors p:last-of-type {
  margin-bottom: 0;
}
article.invbox.doctors .leftbox .icon {
  width: 20%;
  height: 59px;
}
@media only screen and (min-width: 992px) {
  article.invbox.doctors .leftbox .icon {
    height: 120px;
    width: 33%;
    margin-bottom: 0;
    margin-right: 0;
  }
}
article.invbox.doctors .leftbox .icon.photo {
  width: 20%;
  height: 59px;
}
@media only screen and (min-width: 992px) {
  article.invbox.doctors .leftbox .icon.photo {
    height: 294px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
  }
}
article.invbox.doctors .leftbox .icon.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  article.invbox.doctors .leftbox .icon.photo img {
    width: 100%;
    width: 100%;
  }
}
article.invbox.doctors .rightbox img {
  margin-top: 1em;
  margin-bottom: 1em;
}
@media only screen and (min-width: 992px) {
  article.invbox.doctors .rightbox img {
    display: none;
  }
}
article.invbox.filecard {
  width: 100%;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  article.invbox.filecard .leftbox {
    height: 184px;
    flex-basis: 180px;
  }
}
@media only screen and (max-width: 992px) {
  article.invbox.filecard .leftbox {
    flex-basis: 65%;
    flex-grow: 900;
    flex-direction: row-reverse;
    padding: 4px 8px;
  }
}
article.invbox.filecard .leftbox a {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  article.invbox.filecard .leftbox a {
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) {
  article.invbox.filecard .leftbox h2 {
    text-align: right;
  }
}
@media only screen and (max-width: 992px) {
  article.invbox.filecard .leftbox h2 {
    font-size: 90%;
  }
}
article.invbox.filecard a:hover {
  text-decoration-color: #FFF;
}
article.invbox.filecard .rightbox {
  border-top: none;
}
@media only screen and (max-width: 992px) {
  article.invbox.filecard .rightbox {
    width: 100px;
    flex-grow: 0;
  }
}
article.invbox.filecard .rightbox .infobox {
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  article.invbox.filecard .rightbox .infobox {
    display: flex;
  }
}
article.invbox.filecard .rightbox a {
  margin-bottom: 0;
  min-width: 100px;
}
@media only screen and (min-width: 992px) {
  article.invbox.filecard .rightbox a {
    min-width: 140px;
  }
}
@media only screen and (max-width: 992px) {
  article.invbox.filecard .rightbox a {
    padding: 4px;
  }
}
article.invbox.filecard .rightbox h2 {
  margin-bottom: 0;
}
article.invbox.filecard .iconholder {
  width: 32px;
  height: 32px;
}
article.invbox.filecard .iconholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 992px) {
  article.invbox.filecard .iconholder {
    width: 64px;
    height: 64px;
  }
}
@media only screen and (max-width: 992px) {
  article.invbox.filecard .iconholder {
    margin-right: 12px;
  }
}
article.invbox.filecard .butts .openpicviewer a {
  border-bottom-width: 0 !important;
}
@media only screen and (max-width: 992px) {
  article.invbox.filecard .butts .openpicviewer a {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 992px) {
  article.invbox.filecard .butts a {
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

article.investigationlistelement {
  margin-bottom: 30px;
}
article.investigationlistelement a.borderbutton, article.investigationlistelement p:last-of-type {
  margin-bottom: 30px;
}

article.investigationlistelement:last-of-type .ruler {
  display: none;
}

section.generalcontent .ruler {
  margin-bottom: 2em;
}
section.generalcontent img {
  margin-bottom: 2em;
}
section.generalcontent a {
  color: #FFF;
  font-weight: bold;
  text-decoration: underline;
}
section.generalcontent h2, section.generalcontent h3 {
  font-size: 12px;
  font-weight: bold;
}
@media only screen and (min-width: 992px) {
  section.generalcontent h2, section.generalcontent h3 {
    font-size: 15px;
  }
}
section.generalcontent h3 {
  color: #005360;
}
section.generalcontent h4 {
  font-size: 0.9rem;
  color: #005360;
}

section.pricelist h2 {
  padding-top: 4em;
}
section.pricelist .container .row:first-of-type h2:first-of-type {
  padding-top: 0;
}
section.pricelist table tr {
  transition: 0.2s all ease-out;
}
section.pricelist table tr td:last-child {
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  section.pricelist table tr td:last-child {
    min-width: 86px;
  }
}
@media only screen and (min-width: 992px) {
  section.pricelist table tr:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
}
section.pricelist .prices6 table tr td:nth-child(2), section.pricelist .prices2 table tr td:nth-child(2) {
  white-space: nowrap;
  min-width: 86px;
}

@media only screen and (min-width: 992px) {
  #map {
    height: 600px;
  }
}

section.medreclogin {
  background-image: url(/img/leletnezo.jpg);
  background-size: cover;
  background-position: top right;
  display: flex;
  flex-grow: 1000;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 10em;
}
@media only screen and (min-width: 768px) {
  section.medreclogin {
    padding-bottom: 4em;
  }
}
section.medreclogin h1 {
  font-size: 40px;
}
@media only screen and (max-width: 768px) {
  section.medreclogin h1 {
    font-weight: 700;
    font-size: 29px;
  }
}
section.medreclogin .ruler {
  margin: 1.4em 0;
}
section.medreclogin p {
  margin-bottom: 3em;
}
section.medreclogin form {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  section.medreclogin form {
    flex-direction: row;
    flex-wrap: nowrap;
    height: 61px;
    justify-content: stretch;
  }
}
section.medreclogin form input {
  border: none;
  background-color: #00606f;
  border-radius: 0;
  color: #FFF;
  font-weight: bold;
  padding: 8px 16px;
}
@media only screen and (min-width: 768px) {
  section.medreclogin form input {
    flex-basis: 50%;
    background-color: #008b9b;
  }
}
section.medreclogin form input::placeholder {
  color: #FFF;
}
section.medreclogin form input[type=password] {
  background-color: #005360;
}
@media only screen and (min-width: 768px) {
  section.medreclogin form input[type=password] {
    flex-basis: 25%;
    background-color: #009faf;
  }
}
section.medreclogin form input[type=submit] {
  background: transparent;
  border: 1px solid #FFF;
  width: 120px;
  height: 40px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  section.medreclogin form input[type=submit] {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) {
  section.medreclogin form input[type=submit] {
    height: 61px;
    flex-basis: 25%;
  }
}
section.medreclogin .plate {
  width: 100%;
  height: 150px;
  position: absolute;
  background-color: #00adba;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  section.medreclogin .plate {
    display: none;
  }
}

section.medrecs .flybox span {
  font-weight: 100;
}

section.gallery {
  padding-top: 50px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  section.gallery {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 992px) {
  section.gallery {
    flex: 1;
  }
}
@media only screen and (min-width: 992px) {
  section.gallery .col-4 {
    flex: 0 0 12.5%;
  }
}
section.gallery .bgboxes {
  padding-top: 100px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 992px) {
  section.gallery .bgboxes {
    display: flex;
  }
}
section.gallery .bgboxes .bgbox {
  width: 12.5%;
}
section.gallery .bgboxes .bgbox:nth-of-type(odd) {
  background-color: #007487;
}
section.gallery .bgboxes .bgbox:nth-of-type(3) {
  background-color: #009faf;
}

section.newslist h2 {
  font-size: 15px;
  font-weight: 700;
}
section.newslist .ruler {
  margin-top: 1em;
  margin-bottom: 3em;
}

section.patientmanager p {
  min-height: 3em;
}
section.patientmanager input, section.patientmanager button {
  background: transparent;
  border: 1px solid #FFF;
  padding: 16px;
  color: #FFF;
  width: 100%;
}
section.patientmanager input::placeholder, section.patientmanager button::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
section.patientmanager input.stacked {
  border-bottom-width: 0;
}
section.patientmanager input.stacked[name=birthday] {
  border-bottom-width: 1px;
}
section.patientmanager input.error {
  background-color: #FF4D4D;
}
section.patientmanager input[type=submit], section.patientmanager input[type=button], section.patientmanager button {
  font-weight: bold;
  min-width: 240px;
  margin: 2em 0;
  background-color: #00606f;
  border: none;
  text-transform: uppercase;
}
section.patientmanager input[type=submit]:disabled, section.patientmanager input[type=button]:disabled, section.patientmanager button:disabled {
  opacity: 0.4;
}
section.patientmanager input[type=submit]:hover, section.patientmanager input[type=button]:hover, section.patientmanager button:hover {
  background-color: #005360;
  color: #FFF;
}
section.patientmanager input[type=file] {
  border: none;
}
section.patientmanager .search-box {
  width: 100%;
  position: relative;
}
section.patientmanager .search-box .result {
  width: 100%;
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
}
section.patientmanager .search-box .result p {
  display: block;
  background-color: #005360;
  width: 100%;
  transition: 0.15s all;
  margin-bottom: 0;
  min-height: unset;
  padding: 6px 4%;
  border-bottom: 1px solid #009faf;
  cursor: pointer;
}
section.patientmanager .search-box .result p:hover {
  background-color: #007487;
}
section.patientmanager .table-responsive {
  position: relative;
  padding-bottom: 70px;
}
section.patientmanager .table-responsive table {
  margin: 0;
}
section.patientmanager #add {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
  width: auto;
}
section.patientmanager .removefile {
  width: 60px;
  display: inline-block;
  min-width: unset;
  margin: 0;
  background-color: red !important;
  opacity: 0.7;
}
section.patientmanager .removefile:hover {
  opacity: 1;
}
section.patientmanager a.resend {
  display: block;
  text-align: center;
  color: #005360;
  font-weight: bold;
  font-size: 85%;
  transition: opacity 0.5s;
  transition-delay: 1.5s;
}
section.patientmanager a.resend.hide {
  opacity: 0;
}

#mpopup .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}
#mpopup .modal-header .close {
  color: white;
  opacity: 0.8;
}
#mpopup .modal-header .close:hover {
  opacity: 1;
}
#mpopup h2 {
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
#mpopup p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}
#mpopup .modal-content {
  text-align: center;
  background-color: #007487;
  border: none;
  border-radius: 12px;
}
#mpopup .app-store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
#mpopup .app-store-buttons .store-btn {
  display: inline-block;
  transition: transform 0.2s ease;
}
#mpopup .app-store-buttons .store-btn:hover {
  transform: scale(1.05);
}
#mpopup .app-store-buttons .store-btn img {
  height: 50px;
  width: auto;
}
#mpopup .modal-dialog {
  max-width: 600px;
}
#mpopup .modal-body {
  position: relative;
  overflow: visible;
}
#mpopup .modal-footer {
  border-top: none;
  justify-content: center;
}
#mpopup .carousel-indicators {
  bottom: 10px;
  margin-bottom: 0;
}
#mpopup .carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}
#mpopup .carousel-indicators li.active {
  background-color: #FFF;
}
#mpopup .carousel-control-prev,
#mpopup .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  opacity: 0.9;
  background-color: rgba(0, 116, 135, 0.9);
  border-radius: 50%;
}
#mpopup .carousel-control-prev:hover,
#mpopup .carousel-control-next:hover {
  opacity: 1;
  background-color: #007487;
}
#mpopup .carousel-control-prev {
  left: -22px;
}
#mpopup .carousel-control-next {
  right: -22px;
}
#mpopup .carousel-item {
  height: 340px;
}
#mpopup .slide-content {
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

/*# sourceMappingURL=main.css.map */

