html {
  font-size: 16px;
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  #suggestPost {
            /*background:url('feedback_right5.png') no-repeat 0px 0px;*/
            top: 100px;          
        }
}

body {
  background-color: #fff !important;
  max-width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.flex-row {
  width: auto !important;
}

@media (max-width: 320px) {
  body {
    min-width: 300px;
  }
}

h1, h2, h3, h4 {
  margin: 0px 0px 20px;
}

h2 {
  font-family: 'Source Serif Pro', serif;
  font-size: 1.5rem;
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Source Serif Pro', serif;
}

@media (max-width: 767px) {
  .header-logo img {
    width: 60px !important;
  }
}

.header-logo-left {
  padding: 12px;
}

@media (min-width: 1200px) {
  .header-logo-left {
    padding-left: 0;
  }
}

.logo-title-top {
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .logo-title-top {
    font-size: 0.8rem;
  }
}

.logo-title-bottom {
  font-weight: 600;
  font-size: 1.875rem;
}

@media (max-width: 767px) {
  .logo-title-bottom {
    font-size: 1.2rem;
  }
}

.header-wrap {
  background: #fff;
}

.header-wrap .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1299px) {
  .header-wrap .header {
    margin-left: 20px;
  }
}

.header-wrap .header-right-language-switcher {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-wrap .header-right-language-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-wrap .header-right-language-switcher ul li a {
  font-size: 12px;
  display: block;
  padding: 4px 10px;
}

@media (max-width: 799px) {
  .header-wrap .header-right {
    display: none;
  }
}

.header-wrap .header-menu {
  width: 100%;
  margin-top: 15px;
}

.header-wrap .header-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header-wrap .header-menu > ul > li > a {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 10px 15px;
}

.header-wrap .header-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-search {
  position: relative;
  margin: 5px 0px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-search input[type="text"] {
  padding: 10px 45px 10px 10px;
  border: 3px solid #1F3776;
  border-radius: 5px;
  width: 100%;
}

.header-search button {
  -webkit-appearance: none;
  border: 0;
  background: #1F3776;
  color: #fff;
}

.header-search-icon {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0;
  width: 40px;
  border-radius: 0px 5px 5px 0px;
}

.header-search-mobile {
  margin: 15px 15px 0px;
  display: none;
}

.header-search-mobile input[type="text"] {
  border: 2px solid #f1e9dc;
}

@media (max-width: 799px) {
  .header-search-mobile {
    display: block;
  }
}

.header-search-mobile button {
  background-color: #f1e9dc;
  color: #1F3776;
}

.vertical-menu {
  background: #1F3776;
  padding: 0;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  margin: 0px 0px;
}

.vertical-menu > ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.vertical-menu > ul .fa-angle-down, .vertical-menu > ul .fa-angle-up {
  font-size: 25px;
}

.vertical-menu > ul li a {
  display: block;
  color: #fff;
}

.vertical-menu > ul li ul {
  display: none;
  list-style: none;
  margin: 0px 0px;
  padding: 0 0 0 30px;
}

.vertical-menu > ul li ul li {
  margin: 0;
}

.vertical-menu > ul li ul li a {
  padding: 5px 10px;
}

.vertical-menu > ul > li {
  position: relative;
  padding: 2px;
}

.vertical-menu > ul > li i {
  float: right;
}

.vertical-menu > ul > li > a {
  padding: 8px 15px;
  font-weight: 600;
  border-radius: 4px;
}

.vertical-menu > ul > li > a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.hero {
  position: relative;
}

.hero .hero-img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 30px 0px 60px;
  background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
  .hero .hero-content {
    padding: 50px 0px 100px;
  }
}

.hero .hero-content h2 {
  margin: 0px 0px 15px;
  font-size: 40px;
  font-family: 'Source Serif Pro', serif;
}

@media (max-width: 767px) {
  .hero .hero-content h2 {
    font-size: 28px;
  }
}

.hero .hero-content h3 {
  font-weight: 400;
  margin: 0;
}

.hero .hero-content-text {
  max-width: 550px;
}

.icon-card {
  display: block;
  text-align: center;
  padding: 15px 5px 15px;
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  color: #1F3777;
  border-radius: 5px;
  font-weight: bold;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: #fff;
  margin-bottom: 30px;
}

.icon-card-icon {
  font-size: 4rem;
}

.icon-card-title {
  font-size: 1.5rem;
}

.icon-card h3 {
  margin: 0;
}

.home-page-top-icons {
  margin: 0px 0px 30px;
}

.home-page-top-icons .icon-card {
  border: 2px solid #f1e9dc;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 100%;
  margin: 0px;
}

.btn {
  display: inline-block;
  border: 2px solid #1F3776;
  background: #1f3776;
  padding: 8px 12px;
  color: #fff;
  border-radius: 5px;
}

.btn:hover {
  color: #1F3776;
  background: #fff;
}

.card {
  display: block;
  padding: 15px 20px 15px;
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  color: #1F3777;
  border-radius: 5px;
  font-weight: bold;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: #fff;
  margin-bottom: 30px;
}

.card.news-card {
  padding: 10px 20px;
}

.news-card {
  padding: 10px 0px 0px;
  margin: 0px 0px 30px;
}

.news-card h2 {
  margin: 0px 0px 10px;
  padding: 0px 0px 10px;
  border-bottom: 2px solid #1F3776;
  color: #1F3776;
}

.news-card-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CFC0A7;
}

.news-card-item-date {
  font-weight: 600;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.news-card-item a {
  border-bottom: #1F3776 dashed 1px;
}

.news-card-item a[href$=".pdf"] {
  background-image: url(https://www.jud.ct.gov/imgs/pdf.gif);
  background-repeat: no-repeat;
  background-position: 100% center;
  padding-right: 1.4em;
}

.court-block {
  margin: 0px 0px 20px;
  display: block;
  color: #1F3777;
  border-radius: 5px;
  height: calc(100% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.court-block h2, .court-block p {
  margin: 0px 0px 1em;
}

.court-block a {
  margin-top: auto;
}

/*.home-page-courts{
    //margin-top:30px;
}*/
.row-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.home-page-tabs {
  -webkit-box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.1);
  margin: 0px 0px 30px;
}

.home-page-tabs__wrap {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.home-page-tabs__titles {
  border: 1px solid rgba(207, 192, 167, 0.5);
  background: #cfc0a7;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #d8ccb6), to(#fef8e5));
  background: linear-gradient(to bottom, #d8ccb6 1%, #fef8e5 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1F3776;
  cursor: pointer;
}

.home-page-tabs__titles__item {
  padding: 20px 0px;
  border-right: 1px solid rgba(207, 192, 167, 0.5);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .home-page-tabs__titles__item {
    font-size: 16px;
  }
}

.home-page-tabs__titles__item i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.home-page-tabs__titles__item.tab-title-active {
  background: #fff;
}

.home-page-tabs__titles__item.tab-title-active i {
  -webkit-transform: rotateZ(-180deg);
          transform: rotateZ(-180deg);
}

.home-page-tabs__titles__item:last-child {
  border-right: 0;
}

.home-page-tabs__titles__item span {
  display: block;
}

.home-page-tabs__mobile-title {
  display: none;
}

@media (max-width: 991px) {
  .home-page-tabs__mobile-title {
    display: block;
    padding: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #fef8e5;
    border-top: 1px solid #ddd;
    font-size: 18px;
    font-weight: 600;
    color: #1F3776;
    cursor: pointer;
  }
  .home-page-tabs__mobile-title.tab-title-active {
    background-color: #fff;
  }
  .home-page-tabs__mobile-title i {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .home-page-tabs__mobile-title.tab-title-active {
    background: #fff;
  }
  .home-page-tabs__mobile-title.tab-title-active i {
    -webkit-transform: rotateZ(-180deg);
            transform: rotateZ(-180deg);
  }
}

@media (max-width: 991px) {
  .home-page-tabs__titles {
    display: none;
  }
  .home-page-tabs__contents__item {
    border: 0 !important;
  }
}

.home-page-tabs__contents__item {
  display: none;
  padding: 30px;
  border: 1px solid rgba(207, 192, 167, 0.5);
  border-top: 0;
}

.home-page-tabs__contents__item ul {
  margin: 0px 0px 0px 0px;
  list-style: none;
}

.home-page-tabs__contents__item ul li {
  padding: 3px 0px;
}

ul.list-with-arrows {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

ul.list-with-arrows li {
  padding: 4px 4px 4px 20px;
  margin: 0px;
  list-style: none;
  position: relative;
}

ul.list-with-arrows li:before {
  position: absolute;
  left: 0px;
  top: 8px;
  content: "\f054";
  display: block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #957870;
}

@media (max-width: 767px) {
  .page-main-row > .col-3, .page-main-row > .col-9 {
    width: 100%;
  }
}

.home-page-top-icons > .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

@media (max-width: 767px) {
  .home-page-top-icons > .row {
    margin: 0px -10px;
  }
}

.home-page-top-icons > .row .col-one-fifth {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .home-page-top-icons > .row > .col-3 {
    width: 50%;
  }
  .home-page-top-icons > .row > .col-one-fifth {
    width: 33.33%;
    margin-bottom: 10px;
    padding: 0px 5px;
  }
  .home-page-top-icons > .row > .col-one-fifth h3 {
    font-size: 16px;
  }
}

@media (max-width: 499px) {
  .home-page-top-icons > .row > .col-one-fifth {
    width: 50%;
  }
}

@media (max-width: 499px) {
  .home-page-courts > .row > .col-6 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home-page-tabs__contents__item > .row > .col-6 {
    width: 100%;
  }
}

@media (min-width: 800px) {
  #JudMaster_LeftNav .top-social-icons {
    display: none;
  }
}

@media (min-width: 1300px) {
  /*.main-row */
  .MasterCanvas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*.side-menu*/
  }
  .MasterCanvas #JudMaster_LeftNav {
    width: 300px;
    background: #1F3776;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .MasterCanvas .main-content-wrap {
    width: 100%;
  }
}

.header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-top: 3px solid #1F3776;
}

@media (max-width: 1299px) {
  .header-row {
    background: -webkit-gradient(linear, left top, left bottom, from(#3360A7), to(#15254e));
    background: linear-gradient(#3360A7 0%, #15254e 100%);
  }
}

.header-row .menu-toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.header-row-right {
  width: 100%;
}

.menu-toggler {
  padding: 10px;
  height: 104px;
  /* @include rmx(767) {
        height:83px;
        width:100%;
        float: none !important;
    }*/
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.menu-toggler .fa {
  font-size: 40px;
  color: #1F3776;
}

.menu-toggler__title {
  color: #1F3776;
  padding: 0px 10px;
  font-weight: 600;
  font-size: 22px;
}

.menu-toggler__bars {
  display: block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-toggler__bar {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: #1F3776;
  display: block;
  margin: 0px 0px 5px;
}

/*.main-row */
.MasterCanvas #JudMaster_LeftNav {
  width: 0px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.MasterCanvas #JudMaster_LeftNav a {
  text-decoration: none;
}

.MasterCanvas #JudMaster_LeftNav .vertical-menu {
  width: 300px;
}

@media (max-width: 1299px) {
  .MasterCanvas #JudMaster_LeftNav {
    overflow-y: auto;
  }
}

/*
@include rmn($left-menu-breakpoint) {
    #JudMaster_LeftNav{height: 0;}

    .side-menu-active{
        #JudMaster_LeftNav{height: 100%;}
    }
}*/
.side-menu-active {
  /*.main-row */
}

.side-menu-active .MasterCanvas #JudMaster_LeftNav {
  width: 300px;
}

.side-menu-active .menu-toggler__bars {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media (max-width: 1299px) {
  .side-menu-active .header-row {
    position: fixed !important;
    z-index: 99;
  }
}

@media (min-width: 1300px) {
  .side-menu-active .header-row-left {
    width: 300px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.header-row-left {
  width: 0px;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 1299px) {
  /*.side-menu*/
  #JudMaster_LeftNav {
    position: fixed;
    left: 0;
    top: 104px;
    bottom: 0;
    z-index: 99;
    -webkit-box-shadow: 5px 0px 5px 0px rgba(0, 0, 0, 0.5);
            box-shadow: 5px 0px 5px 0px rgba(0, 0, 0, 0.5);
    background-color: #1F3776;
  }
  /*.main-row */
  .MasterCanvas {
    position: relative;
  }
}

@media (max-width: 767px) {
  #JudMaster_LeftNav {
    top: 83px;
  }
  .header-wrap .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1299px) {
  .menu-toggler {
    display: block;
    padding: 3px;
    height: 100%;
    text-align: center;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu-toggler span {
    font-size: 12px;
    display: block;
  }
}

/*.main-row */
.MasterCanvas {
  border-top: 1px solid #CFC0A7;
}

.container.no-padding {
  padding: 0;
}

@media (min-width: 992px) {
  .container {
    padding: 0px 30px;
  }
}

@media (max-width: 767px) {
  .home-page-bottom-content .col-6 {
    width: 100%;
  }
}

.educators-card ul {
  list-style: square;
  margin: 0;
  padding: 0px 0px 0px 20px;
  font-weight: 400;
}

.educators-card ul li {
  padding: 5px 0px;
}

.educators-card ul ul {
  margin: 0 0 0px;
  list-style: disc;
}

.educators-card ul ul li {
  padding: 0;
}

@media (min-width: 1300px) and (max-width: 1400px) {
  .header-row {
    padding: 0px 0 0 85px;
  }
  .side-menu-active .header-row {
    padding: 0;
  }
}

#JudMaster_Footer {
  text-align: center;
  color: #fff;
  padding: 20px;
  background-color: #4c463d;
}

#JudMaster_Footer a {
  color: #fff;
}

#LmenuIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#LmenuIcons i {
  float: none;
}

#JudMaster_Header {
  position: relative;
}

#JudMaster_Header a {
  text-decoration: none;
}

@media (max-width: 1299px) {
  #JudMaster_Header {
    height: 104px;
  }
  #JudMaster_Header .header-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 104px;
  }
}

@media (max-width: 767px) {
  #JudMaster_Header {
    height: 83px;
  }
  #JudMaster_Header .header-row {
    height: 83px;
  }
  #JudMaster_Header .header-logo-left {
    height: 80px;
  }
}

.litetanbtn {
  list-style: none;
  font: bold .8em Arial, Helvetica, sans-serif;
  color: #1f3776 !important;
  text-align: center;
  padding: 6px 24px !important;
  border-radius: 8px;
  text-shadow: 1px 1px 1px #999;
  -webkit-box-shadow: 0px 1px 3px #666666;
          box-shadow: 0px 1px 3px #666666;
  font-family: Arial;
  font-weight: bold;
  background: #fef8e5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fef8e5), color-stop(70%, #cfc0a7));
  background-image: linear-gradient(to bottom, #fef8e5, #cfc0a7 70%);
  margin: 0 0 2px 0;
  display: block;
  text-decoration: none;
  font-size: 0.9em;
  margin: 15px 0px;
}

#wrapper .MasterCanvas {
  border-radius: 0px;
  background-color: #f0f0f0;
}

#wrapper .MasterCanvas .MasterContent {
  padding: 30px;
}

@media (max-width: 767px) {
  #wrapper .MasterCanvas .MasterContent {
    padding: 0px;
  }
}

#wrapper .MasterCanvas .MasterContent > .container {
  padding: 0px 15px 15px;
  -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
  background: #fff;
}

#wrapper .MasterCanvas .MasterContent > .container:after {
  display: table;
  width: 100%;
  content: "";
  clear: both;
}

.side-menu-no-animation #JudMaster_LeftNav, .side-menu-no-animation .header-row-left {
  -webkit-transition: none !important;
  transition: none !important;
}

#JudMaster_Header {
  background: -webkit-gradient(linear, left top, left bottom, from(#3360A7), to(#15254e));
  background: linear-gradient(#3360A7 0%, #15254e 100%);
}

#JudMaster_Header .header-row .menu-toggler, #JudMaster_Header .header-wrap {
  background-color: transparent;
}

#JudMaster_Header .menu-toggler__title, #JudMaster_Header .menu-toggler .fa, #JudMaster_Header .logo-title {
  color: #fff;
}

#JudMaster_Header .header-right-language-switcher a {
  color: #fff;
}

#JudMaster_Header .header-search input[type="text"] {
  border: 2px solid #CFC0A7;
}

#JudMaster_Header .header-search button {
  background-color: #CFC0A7;
  color: #1F3776;
}

#JudMaster_Header .header-row {
  border-top: 5px solid #15254e;
}

.MasterCanvas {
  border-top: 5px solid #CFC0A7;
}

.HomeMasterContent {
  width: 100% !important;
  padding: 0px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.HomeMasterContent a {
  color: #1F3776;
  text-decoration: none;
}

.HomeMasterContent a:hover {
  color: #CC0000;
}

.HomeMasterContent > .container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.HomeMasterContent h2 {
  line-height: 1.4;
  font-family: 'Source Serif Pro', serif;
  color: #1F3776;
  font-size: 1.5rem;
}

.HomeMasterContent h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.17rem;
}

.HomeMasterContent .hero .hero-content h2 {
  color: #fff;
}

.HomeMasterContent .hero .hero-content h3 {
  color: #fff;
}

.top-social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-social-icons a {
  display: block;
  padding: 10px;
}

.top-social-icons a i {
  font-size: 2.3em !important;
}

.header-search-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0px;
}
/*# sourceMappingURL=design.css.map */