@charset 'UTF-8';
html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

*:after,
*:before {
  box-sizing: inherit;
}

.header {
  width: 100%;
  padding: 8px 0;
  border-top: 4px solid #333;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .header {
    padding: 16px 0;
    border-top: 8px solid #333;
  }
}

.header__container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  margin: auto;
  padding: 0 12px;

  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .header__container {
    max-width: 984px;
  }
}

@media (min-width: 1200px) {
  .header__container {
    max-width: 1200px;
    padding: 0 16px;
  }
}

.header__search-form {
  display: none;
}

@media (min-width: 568px) {
  .header__search-form {
    display: block;

    flex-basis: 280px;
  }
}

@media (min-width: 1024px) {
  .header__search-form {
    flex-basis: 240px;
  }
}

@media (min-width: 1200px) {
  .header__search-form {
    flex-basis: 280px;
  }
}

.header__search-form--nav {
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 568px) {
  .header__search-form--nav {
    display: none;
  }
}

.header__nav {
  display: none;
  flex: 1 1 100%;
  margin-top: 32px;

  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
}

@media (min-width: 568px) {
  .header__nav {
    margin-top: 24px;
  }
}

@media (min-width: 768px) {
  .header__nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header__nav {
    flex: 0 1 auto;
    margin-top: 0;

    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
  }
}

.header__nav--show {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

.body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin: 16px 8px 0;

  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .body {
    max-width: 768px;
    margin: 24px auto 0;
  }
}

@media (min-width: 1024px) {
  .body {
    flex-direction: row;
    margin-top: 24px;

    -webkit-flex-direction: row;
    -ms-flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .body {
    margin-top: 32px;
  }
}

.body__content {
  padding: 24px 16px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .body__content {
    margin: auto;
    padding: 24px 16px;
  }
}

@media (min-width: 1024px) {
  .body__content {
    flex: 0 0 640px;
    margin: 0 12px;
    padding: 24px 16px;

    -webkit-flex: 0 0 640px;
    -ms-flex: 0 0 640px;
  }
}

@media (min-width: 1200px) {
  .body__content {
    flex: 0 0 768px;
    margin: 0 16px;
    padding: 32px 24px;

    -webkit-flex: 0 0 768px;
    -ms-flex: 0 0 768px;
  }
}

.body__content img {
  display: block;
  max-width: 100%;
}

.body__sidebar {
  padding: 12px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .body__sidebar {
    margin: 0;
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .body__sidebar {
    flex: 0 0 320px;
    margin: 0 12px;
    padding: 24px 16px;

    -webkit-flex: 0 0 320px;
    -ms-flex: 0 0 320px;
  }
}

@media (min-width: 1200px) {
  .body__sidebar {
    flex: 0 0 368px;
    margin: 0 16px;
    padding: 32px 24px;

    -webkit-flex: 0 0 368px;
    -ms-flex: 0 0 368px;
  }
}

@media (min-width: 568px) and (max-width: 1023px) {
  .body__sidebar .widget-3 {
    float: left;
    max-width: 50%;
    padding-right: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .body__sidebar .widget-3 {
    padding-right: 16px;
  }
}

@media (min-width: 568px) and (max-width: 1023px) {
  .body__sidebar .widget-4 {
    float: left;
    max-width: 50%;
    padding-left: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .body__sidebar .widget-4 {
    padding-left: 16px;
  }
}

.title {
  line-height: 1.25;
}

.title--big {
  margin-top: 0;
  margin-bottom: 16px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

@media (min-width: 568px) {
  .title--big {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .title--big {
    margin-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .title--big {
    font-size: 32px;
  }
}

.menu-toggle {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 28px;
  margin: auto 0;
  padding: 6px 8px;
  cursor: pointer;
  border: none;
  background: none;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle:focus {
  outline: none;
}

.menu-toggle--on .menu-toggle__icon {
  background-color: transparent;
}

.menu-toggle--on .menu-toggle__icon:before {
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  background-color: #000;
}

.menu-toggle--on .menu-toggle__icon:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  background-color: #000;
}

.menu-toggle__icon {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 22px;
  height: 2px;
  margin: auto;
  transition: 0.2s;
  background-color: #000;
}

.menu-toggle__icon:before {
  position: absolute;
  width: inherit;
  height: inherit;
  content: '';
  transition: inherit;
  -webkit-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  transform: translateY(-7px);
  background-color: inherit;
}

.menu-toggle__icon:after {
  position: absolute;
  width: inherit;
  height: inherit;
  content: '';
  transition: inherit;
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
  transform: translateY(7px);
  background-color: inherit;
}

.footer {
  margin-top: 16px;
  padding: 16px 0;
  color: rgba(84, 84, 84, 0.7);
  background-color: #fff;
  font-size: 12px;
}

@media (min-width: 768px) {
  .footer {
    margin: 32px auto 0;
    padding: 20px 0;
  }
}

.footer__container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    margin: auto;
    padding: 0 16px;

    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .footer__container {
    max-width: 984px;
  }
}

@media (min-width: 1200px) {
  .footer__container {
    max-width: 1200px;
  }
}

@media (max-width: 767px) {
  .footer__copyright {
    margin-bottom: 8px;
  }
}

.top-pharmacies--column {
  flex: 1 1 300px;

  -webkit-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
}

.top-rated-pharmacies {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .top-rated-pharmacies {
    max-width: 50%;
    padding-right: 16px;
  }
}

@media (min-width: 1024px) {
  .top-rated-pharmacies {
    flex-direction: column;

    -webkit-flex-direction: column;
    -ms-flex-direction: column;
  }
}

.top-rated-pharmacies__item {
  flex: 1 1 100%;

  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
}

.top-pharmacy {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 16px;
  line-height: 1;
}

.top-pharmacy__report {
  flex: 1 1 100%;
  padding-right: 8px;

  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
}

.top-pharmacy__title {
  color: #000;
  font-size: 12px;
}

@media (min-width: 479px) and (max-width: 767px) {
  .top-pharmacy__title {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .top-pharmacy__title {
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .top-pharmacy__title {
    font-size: 13px;
  }
}

.top-pharmacy__title:hover {
  color: #000;
}

.top-pharmacy__rate-stars {
  margin-top: 4px;
  margin-bottom: 12px;
  color: #eb5c57;
}

.top-pharmacy__credit-cards {
  color: #545454;
  font-size: 13px;
}

.top-pharmacy__credit-cards:hover {
  color: #545454;
}

@media (min-width: 479px) and (max-width: 767px) {
  .top-pharmacy__screenshot {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex: 1 1 100%;

    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top-pharmacy__screenshot img {
  display: block;
}

.top-pharmacy__button-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 1 0 auto;

  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.top-pharmacy__button {
  display: inline-block;
  margin: auto;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease-in;
  text-transform: capitalize;
  color: #fff;
  border-radius: 2px;
  background-color: #eb5c57;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

@media (max-width: 479px), (min-width: 768px) {
  .top-pharmacy__button {
    display: none;
  }
}

.logo {
  display: inline-block;
  line-height: 1;
}

.logo__img {
  display: block;
}

.logo__text {
  display: inline-block;
  text-transform: uppercase;
  color: #eb5c57;
  font-size: 28px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .logo__text {
    font-size: 30px;
  }
}

.logo__text--accent {
  color: #858585;
}

.search-form {
  position: relative;
  overflow: hidden;
  max-width: 758px;
}

@media (min-width: 568px) and (max-width: 1023px) {
  .search-form {
    max-width: 280px;
  }
}

@media (min-width: 1024px) {
  .search-form {
    max-width: 320px;
  }
}

.search-form__text-field {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 6px 36px 6px 12px;
  font-size: 12px !important;
}

@media (min-width: 1024px) {
  .search-form__text-field {
    padding: 8px 40px 8px 12px;
  }
}

.search-form__text-field:focus,
.search-form__text-field:hover {
  outline: none;
}

.search-form__button-submit {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 18px;
  text-indent: 9999px;
  border: 0;
  background: url('../images/icons/search-submit.png') center no-repeat;
}

@media (min-width: 1024px) {
  .search-form__button-submit {
    padding: 20px;
  }
}

.search-form__button-submit:focus,
.search-form__button-submit:hover {
  outline: none;
}

.nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding: 0;

  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}

@media (max-width: 767px) {
  .nav {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav {
    flex-direction: row;

    -webkit-flex-direction: row;
    -ms-flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .nav {
    flex-direction: row;

    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.nav--show {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav .menu-item {
  flex: 1 auto;
  padding: 0;
  background: none !important;

  -webkit-flex: 1 auto;
  -ms-flex: 1 auto;
}

@media (min-width: 768px) {
  .nav .menu-item {
    padding: 0 12px;
    text-align: center;
    background: url('../images/nav-div.png') right center no-repeat !important;
  }
}

@media (min-width: 1024px) {
  .nav .menu-item {
    flex: 0 auto;
    padding: 0 20px;

    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
  }
}

@media (min-width: 768px) {
  .nav .menu-item:first-child {
    padding-left: 0;
  }
}

.nav .menu-item:last-child {
  background: none !important;
}

@media (min-width: 768px) {
  .nav .menu-item:last-child {
    padding-right: 0;
  }
}

.nav .menu-item i {
  margin-right: 8px;
  color: #000 !important;
}

.nav a:hover {
  color: #eb5c57;
}

.widget.not(:last-of-type) {
  margin-bottom: 24px;
}

.widget__title {
  margin-bottom: 12px;
  padding-bottom: 12px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .widget__title {
    font-size: 16px;
  }
}

#botdiv tr,
#topdiv tr {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

#botdiv td,
#topdiv td {
  flex: 0 1 100%;

  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
}

@media (min-width: 568px) {
  #botdiv td,
  #topdiv td {
    flex: 0 1 50%;

    -webkit-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
  }
}

@media (min-width: 1200px) {
  #botdiv td,
  #topdiv td {
    flex: 1 1 auto;
    width: auto;
    text-align: center;

    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
  }
}

.entry .size-full {
  display: block;
  width: 100%;
  max-width: 100%;
}

/*----------------------------------------------------------------------------*/
/* Widget Top Rated Online Pharmacies
/*----------------------------------------------------------------------------*/
@media (min-width: 1024px) {
  .super-title {
    font-size: 30px !important;
  }
}

.inside {
  padding: 0 !important;
}

.nav > li > a {
  padding: 12px 0;
}

body {
  padding-top: 0;
}

.my-right {
  float: right !important;
  margin: 0 0 15px 15px !important;
}

ul.true-list {
  margin: 30px;
  list-style-position: inside;
  list-style-type: disc;
}

ul.true-list li {
  margin-left: 15px;
  list-style-position: outside;
  list-style-type: circle;
}

h3 {
  color: black;
  font-size: 16px;
  font-weight: 600;
}

ul.archivepost {
  margin-top: 25px;
  padding-top: 35px;
  border-top: 1px solid #ddd;
}

.acft_total {
  margin-bottom: 16px;
  color: #000;
  line-height: 1.571428;
}

.acft_total h2 {
  color: #000;
  font: bold 18px/1.2em Open Sans;
}

body {
  line-height: 1.571428;
}

@media handheld, only screen and (max-width: 740px) {
  body {
    font-size: 14px;
  }
}

.archivepost li h2,
h2 {
  margin-top: 16px !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
  text-transform: uppercase;
  background: none !important;
  font-size: 18px;
  line-height: 1.333333;
}

.archivepost li h2,
h2.leading {
  margin-top: 0 !important;
  padding: 0 !important;
}

.mainbutton {
  float: left !important;
  margin: 8px 0 0 !important;
}

.icon-star {
  line-height: 1 !important;
}

ul.archivepost {
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid #ddd;
}

.archivepost li.post {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ddd;
}

.pagination {
  display: flex;
  margin-top: 16px;
  margin-bottom: 0;
}

h2 {
  margin-top: 24px;
  margin-bottom: 12px;
  padding: 0;
  letter-spacing: -0.025em;
}

h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 0;
  letter-spacing: -0.025em;
}

#slider {
  margin-top: 24px;
  margin-bottom: 32px;
}

.advanced-content {
  margin-bottom: 24px;
  color: #000;
  line-height: 1.571428;
}

.advanced-content--inner {
  margin-top: 56px;
}

.advanced-content h2 {
  color: #000;
}

.textwidget img {
  margin: 0 !important;
}

@media (min-width: 1024px) {
  .lg-max {
    display: none !important;
  }
}

.size-medium {
  max-width: 100%;
}

#search-2.widget-1,
#search-3.widget-1 {
  display: none;
}

@media (min-width: 1024px) {
  #search-2.widget-1,
  #search-3.widget-1 {
    display: block;
  }
}

.tab-post {
  overflow: inherit;
  height: inherit;
  padding: 16px 0;
}

h2.heading,
h2.pageheading {
  font-size: 18px;
}

@media (min-width: 1024px) {
  h2.heading,
  h2.pageheading {
    font-size: 24px;
  }
}

/* Top Widget */
.top-body {
  background-image: url('/wp-content/themes/blogdrops-beta/images/bg-pattern1.png');
  background-position: 0 0;
}

.top-widget {
}

.top-item {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}

.top-position {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.top-pic {
  position: absolute;
  border: 1px solid #dfdfdf;
}

.top-url {
  margin-left: 120px;
}

.top-buy-now {
  display: inline-block;
  padding: 6px 11px;
  text-transform: uppercase;
  color: #fff !important;
  border-radius: 3px;
  background-color: #eb5c57;
  font-size: 12px;
  font-weight: 700;
}

.top-buy-now:hover {
  background-color: #c9332d;
}

.top-buy-now.more-info {
  margin-left: 10px;
  color: #fff;
  background-color: silver;
  background-image: none;
  font-weight: 400;
}

.top-buy-now.more-info:hover {
  background-color: #999;
}

.top-stars {
  display: block;
  margin-bottom: 5px;
  margin-left: 115px;
}

.top-star {
  width: 25px;
  margin-right: 1px;
  margin-left: 1px;
}

.top-buttons {
  margin-left: 115px;
}

.top-link-block {
  text-decoration: none;
}

.top-widget .widget__title {
  margin-top: -5px;
  margin-bottom: 20px;
  padding-top: 3px;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #eb5c57;
  background-image: -webkit-linear-gradient(135deg, #c9332d, #eb5c57);
  background-image: linear-gradient(315deg, #c9332d, #eb5c57);
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.top-widget .widget__title span {
  display: block;
  margin-top: -4px;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 991px) {
  .top-widget {
  }
  .top-item {
    display: block;
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
  }
  .top-header {
    display: block;
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 479px) {
  .top-widget {
  }
  .top-item {
    padding-bottom: 15px;
  }
  .top-position {
    margin-bottom: 5px;
  }
  .top-pic {
    max-width: 90px;
  }
  .top-buy-now {
    padding: 2px 7px;
    font-size: 11px;
  }
  .top-stars {
    margin-left: 100px;
  }
  .top-star {
    width: 22px;
  }
  .top-buttons {
    margin-left: 100px;
  }
  .top-header {
    margin-top: -18px;
    font-size: 20px;
  }
  .top-weekly {
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  .pharmacy-rating {
    padding-top: 24px;
  }

  .pharmacy-rating-link {
    color: #000;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .top-buy-now {
    padding: 6px 8px;
  }
}

.post-content {
  overflow: hidden;
}

.paged {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  line-height: 1.6;
}

@media (min-width: 568px) {
  .paged {
    flex-direction: row;
  }
}

@media (min-width: 568px) {
  .paged__prev {
    padding-right: 16px;
  }
}

.paged__next {
  margin-top: 16px;
}

@media (min-width: 568px) {
  .paged__next {
    margin-top: 0;
    padding-left: 16px;
    text-align: right;
  }
}

.header__nav-wrapper {
  display: block;
  flex: 1 1 100%;
}

.nav > li > a {
  font-size: 14px;
}

@media (min-width: 768px) {
  .nav > li > a {
    font-size: 12px;
  }
}

@media (min-width: 490px) {
  .post-thumbnail {
    display: block;
    max-width: 200px;
  }
}


/* Slider */
.slider {
  margin-bottom: 32px;
  background-color: #333;
}

.slider__slides {
}

.slider .flex-control-nav {
  z-index: 2;
  right: 16px;
  bottom: 8px;
  display: flex;
  padding-top: 6px;
  padding-bottom: 6px;
}

.slider .flex-control-nav li:not(:first-child) {
  margin-left: 6px;
}

.slider .flex-control-nav li a {
  width: 12px;
  height: 12px;
  color: #f2f2f2;
  border: 2px solid #7f7f7f;
  border-radius: 50%;
  background: none;
}

.slider .flex-control-nav li a.flex-active {
  background-color: #7f7f7f;
}

.slider .flex-direction-nav {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  left: 12px;
  display: flex;
  height: inherit;
}

@media screen and (min-width: 529px) {
  .slider .flex-direction-nav {
    left: 8px;
  }
}

.slider .flex-direction-nav li a {
  position: inherit;
  width: 24px;
  height: 24px;
}

.slider .flex-direction-nav li .flex-prev {
  background-color: #7f7f7f;
  background-image: url('data:image/svg+xml,%3Csvg width=\'6\' height=\'10\' viewBox=\'0 0 6 10\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Ctitle%3EPrev%3C/title%3E%3Cpath stroke=\'%23FFF\' d=\'M4.857.29l-4 4.5 4 4.5\' fill=\'none\' fill-rule=\'evenodd\'/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
}

.slider .flex-direction-nav li .flex-next {
  background-color: #7f7f7f;
  background-image: url('data:image/svg+xml,%3Csvg width=\'6\' height=\'10\' viewBox=\'0 0 6 10\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Ctitle%3ENext%3C/title%3E%3Cpath stroke=\'%23FFF\' d=\'M.857 9.29l4-4.5-4-4.5\' fill=\'none\' fill-rule=\'evenodd\'/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
}

.slider .flex-direction-nav li .flex-prev:hover,
.slider .flex-direction-nav li .flex-next:hover {
  opacity: 0.6;
}

@media screen and (min-width: 529px) {
  .slider .flex-direction-nav li .flex-prev,
  .slider .flex-direction-nav li .flex-next {
    background-color: #333;
  }
  .slider .flex-direction-nav li .flex-prev:hover,
  .slider .flex-direction-nav li .flex-next:hover {
    opacity: 1;
    background-color: #7f7f7f;
  }
}

.slider__slide {
}

.slide {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 529px) {
  .slide {
    flex-direction: row;
  }
}

@media screen and (min-width: 529px) and (max-width: 767px) {
  .slide__thumbnail {
    flex: 0 1 60%;
  }
}

@media screen and (min-width: 768px) {
  .slide__thumbnail {
    flex: 1 0 auto;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .slide__thumbnail {
    flex: 0 1 60%;
  }
}

.slide__content {
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 48px;
  padding-left: 12px;
  background-color: #333;
}

@media screen and (min-width: 529px) and (max-width: 767px) {
  .slide__content {
    flex: 0 1 40%;
  }
}

@media screen and (min-width: 529px) {
  .slide__content {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .slide__content {
    flex: 0 1 auto;
    padding: 16px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .slide__content {
    flex: 0 1 40%;
  }
}

.slide__title {
  margin-bottom: 12px;
  color: #f2f2f2;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.slide__link {
  color: #f2f2f2 !important;
}

.slide__link:hover {
  color: #c7c7c7 !important;
}

.slide__meta {
  margin-top: 12px;
  color: #737373;
  font-size: 12px;
  font-weight: 600;
}

.slide__meta a {
  color: #737373;
}

.slide__meta a:hover {
  color: #f2f2f2;
}

.slide__meta-date {
}

.slide__meta-category:before {
  margin-right: 3px;
  content: '|';
}

.slide__description {
  margin-top: 16px;
  color: #ededed;
  font-size: 12px;
  font-weight: 600;
}

@media screen and (min-width: 529px) and (max-width: 666px) {
  .slide__description {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .slide__description {
    margin-top: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .slide__description {
    margin-top: 24px;
  }
}


/* */
.scrollTo_top {
  z-index: 3;
}

.top_widget_title {
    margin-bottom: 20px;
    padding-top: 3px;
    padding-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background-color: #eb5c57;
    background-image: -webkit-linear-gradient(135deg,#c9332d,#eb5c57);
    background-image: linear-gradient(315deg,#c9332d,#eb5c57);
    font-family: 'Open Sans',sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.top_widget_title span {
    display: block;
    margin-top: -4px;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}