html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul{
  list-style: none;
}
blockquote, q{
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table{
  border-collapse: collapse;
  border-spacing: 0;
}
hr{
    max-width: 1400px;
}
a{
  text-decoration: none;
  color: #0066cc;
}
a:visited{
  color: #0066cc;
}
a:link{
  color: #0066cc;
}
a:active{
  color: #0066cc;
} 
body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #e7ebee;
  line-height: 1;
  overflow-y: scroll;
}
html{
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* GENERAL BODY LAYOUT */

.explore{
  max-width: 1400px;
  margin: auto;
  padding: 0.5rem;
}
.block{
  display: block;
}
.apg-button{
  margin-top: 20px;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b20000), to(#b20000));
  background-image: -moz-linear-gradient(top left 90deg, #b20000 0%, #b20000 100%);
  background-image: linear-gradient(top left 90deg, #b20000 0%, #b20000 100%);
  border-radius: 5px;
  border: 1px solid #66add6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
  cursor: pointer;
  display: inline-block;
}
.apg-button:hover{
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff0021), to(#f82944));
  background-image: -moz-linear-gradient(top left 90deg, #ff0021 0%, #f82944 100%);
  background-image: linear-gradient(top left 90deg, #ff0021 0%, #f82944 100%);
}
.apg-button: active{
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b20000), to(#b20000));
  background-image: -moz-linear-gradient(top left 90deg, #b20000 0%, #b20000 100%);
  background-image: linear-gradient(top left 90deg, #b20000 0%, #b20000 100%);
}
.header-wrapper{
  max-width: 845px;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.header-wrapper-lower{
  max-width: 845px;
  min-height: 70px;
  margin: 0 auto;
  margin-bottom: 15px;
  background: #dcdfe3;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-top: 15px;
  padding-left: 10px;
  padding-bottom: 15px;
}
.header-wrapper-upper{
  max-width: 845px;
  height: 60px;
  margin: 0 auto;
  margin-top: 10px;
  background: #dcdfe3;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px 5px 0px 0px;
  padding-top: 20px;
  padding-left: 10px;
  font-size: 20px;
}
.header-wrapper-upper-text-first{
    color: #B20000;
    font-weight: bold;
    font-size: x-large;
}
.header-wrapper-upper-text-second{
    color: #6C6C6C;
    font-size: x-large;
}
.header-wrapper-upper p{
  margin-left: 20px;
}
.loading-gradient {
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: loading-shimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #FAFAFAFA 8%, #F4F4F4F4 38%, #EAEAEA 54%);
  background-size: 1000px 640px;
  position: relative;
  filter: blur(2px);
}
@keyframes loading-shimmer{
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}

.apg-breaker{
  background: rgb(178,0,0);
  background: linear-gradient(90deg, rgba(178,0,0,1) 0%, rgba(231,235,238,1) 100%);
  height: 2px;
  width: 100%;
}

.hide-div{
  display: none;
}

.apg-message{
  padding: 10px;
  border: 1px solid #b20000;
  margin: 10px 0 10px 0;
  border-radius: 2px;
}
/* END GENERAL BODY */

/* ALERT MESSAGES */

.alert{
  padding: 20px;
  color: white;
  border-radius: 2px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.alert-success{
  background-color: #04AA6D;
}

.alert-error{
  background-color: #F44336;
}

.alert-info{
  background-color: #2196F3;
}

.alert-warning{
  background-color: #FF9800;
}

.alert-closebtn{
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.alert-closebtn:hover {
  color: black;
}

.form-input-error{
    color: #CC0033;
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    margin: 5px 0 0;
}

/* END ALERT MESSAGES */

/* NAV MENU */
.navparent {
    overflow: hidden;
    background-color: #333;
    z-index: 999;
}

.topnav {
  overflow: hidden;
  margin: 0 auto;
  list-style: none;
  width: 1400px;
  z-index: 1000;
}

.topnav a{
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #b20000;
  font-size: 17px;
}

.topnav .navlink{
  padding-top: 18px;
  padding-bottom: 19px;
  padding-left: 14px;
  padding-right: 14px;
}

.topnav .navlink:hover {
  background-color: #ddd;
  color: black;
}

.topnav img{
    width: 40px;
    height: 40px;
    vertical-align: middle;
    overflow: hidden;
    margin-right: 10px;
    margin-top: 8px;
}

.topnav .phoneimg{
    float: left;
    display: none;
    padding: 0;
    padding-right: 5px;
    position: relative;
    top: 0;
}

.topnav span{
    padding-left: 5px;
}

.active {
  background-color: #b20000;
  /*#4CAF50*/
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  /*.topnav.responsive {position: relative;}*/
  /*
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  */
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav{
      z-index: 1;
  }
}
.topnav .login-container {
  float: none; /*save point*/
}

/*drop down styling*/
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 18px 14px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: #b20000;
}

.dropdown-content {
  margin-top: 45px;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

/* end drop down styling */

/* Style the input field inside the navbar */
.topnav input[type=email] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
  width: 150px; /* adjust as needed (as long as it doesn't break the topnav) */
}
.topnav input[type=password] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
  width: 150px; /* adjust as needed (as long as it doesn't break the topnav) */
}

/* Style the button inside the input container */

.login-container button {
  float: right;
  padding: 6px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.topnav .login-container button:hover {
  background: #ccc;
}

/* Add responsiveness - On small screens, display the navbar vertically instead of horizontally */
@media screen and (max-width: 600px) {
  .topnav a, .topnav input[type=email], .topnav input[type=password], .topnav .login-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=email] {
    border: 1px solid #ccc;
  }
  .topnav input[type=password] {
    border: 1px solid #ccc;
  }

  .dropdown {
    float: none;
    z-index: 2;
    width: 100%;
  }

  .dropdown-content {
    margin-top: 0px;
    width: 100%;
  }
}
@media screen and (min-width: 601px) and (max-width: 1399px) {
  .topnav .login-container {
    position: absolute;
    right: 0px;
  }
}
@media screen and (min-width: 1400px) {
  .topnav .login-container {
    float: right;
  }
}

/* END NAV MENU */

/* FORMS */

/* BEGIN GENERIC FORM */
form.generic-form {
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border: 1px solid #ccc;
}

form.generic-form label {
  color: #555;
  display: block;
  padding-top: 10px;
  font-size: 14px;
}

form.generic-form input {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  outline: none;
  display: block;
}

form.generic-form input[type=file] {
  display: inline-block;
}

form.generic-form input[type=checkbox]{
  color: #777;
  margin: 10px;
  padding-left: 10px;
  margin-top: 12px;
  border-radius: 2px;
  box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  display: inline-block;
}

form.generic-form fieldset label{
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  float: left;
  width: 30%;
  margin-left: 18px;
}

form.generic-form input[type=name],
form.generic-form input[type=email],
form.generic-form input[type=text],
form.generic-form input[type=number],
form.generic-form input[type=file],
form.generic-form input[type=password] {
  color: #777;
  padding-left: 10px;
  margin-top: 12px;
  width: 100%;
  height: 35px;
  border: 1px solid #c7d0d2;
  border-radius: 2px;
  box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}
form.generic-form select{
  background-color: white;
  color: #777;
  padding-left: 10px;
  margin-top: 12px;
  width: 100%;
  height: 35px;
  border: 1px solid #c7d0d2;
  border-radius: 2px;
  box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}
form.generic-form textarea{
  color: #777;
  padding-left: 10px;
  padding-top: 10px;
  margin-top: 12px;
  width: 100%;
  height: 200px;
  border: 1px solid #c7d0d2;
  border-radius: 2px;
  box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  display: inline-block;
}

form.generic-form input[type=name]:hover,
form.generic-form input[type=email]:hover,
form.generic-form input[type=text]:hover,
form.generic-form input[type=number]:hover,
form.generic-form input[type=checkbox]:hover,
form.generic-form input[type=file]:hover,
form.generic-form select:hover,
form.generic-form input[type=password]:hover {
  border: 1px solid #b6bfc0;
  box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #f5f7f8;
}

form.generic-form input[type=name]:focus,
form.generic-form input[type=email]:focus,
form.generic-form input[type=text]:focus,
form.generic-form input[type=number]:focus,
form.generic-form input[type=checkbox]:focus,
form.generic-form input[type=file]:focus,
form.generic-form select:focus,
form.generic-form input[type=password]:focus {
  border: 1px solid #a8c9e4;
  box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
}

@media only screen and (max-width: 600px) {

}

.generic-form-disabled-input{
  background-color: #777 !important;
  color: black !important;
}

/* END GENERIC FORM */

/* START LOGIN FORM */

.login-form-container{
  max-width: 500px;
  margin: 0 auto;
}

.login-forgotpassword{
  color: #007fce;
}

.login-forgotpassword:hover{
  text-decoration: underline;
}

/* END LOGIN FORM */

/* START REGISTER FORM */

.register-form-container{
  max-width: 500px;
  margin: 0 auto;
}

/* END REGISTER FORM */

/* START PROFILE EDIT FORM */

.profile-form-container{
  max-width: 500px;
  margin: 0 auto;
}

.profile-header-text{
  font-size: large;
}

.profile-div-breaker{
  margin-top: 1rem;
}

.profile-subs-container{
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border: 1px solid #ccc;
}

/* END PROFILE EDIT FORM */

/* START BIZ PAGE */

.bus-info-container{
  background-color: rgb(255, 255, 255);
  border-bottom-color: rgb(208, 209, 213);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: 0px;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-left-color: rgb(223, 224, 228);
  border-left-style: solid;
  border-left-width: 1px;
  border-right-color: rgb(223, 224, 228);
  border-right-style: solid;
  border-right-width: 1px;
  border-top-color: rgb(229, 230, 233);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-top-style: solid;
  border-top-width: 1px;
  color: rgb(20, 24, 35);
  display: block;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  height: auto;
  line-height: 16.0799999237061px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  text-align: left;
  max-width: 1036px;
  margin: 0 auto;
  width: 100%
}

.bus-row{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 30% 70%;
}

@media (max-width: 600px){
  .bus-row{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.biz-profile-top{
  font-size: 22px;
  font-weight: bold;
  overflow: auto;
}
.biz-profile-top img{
  vertical-align: middle;
  border: 1px solid #ddd;
  width: auto;
  height: 70px;
  float: left;
}
.biz-profile-bus-name{
  display: inline;
  vertical-align: top;
  padding: 0.2rem 0 0 0.5rem;
}
.contact-container span{
  padding: 0.25rem 0rem 0.25rem 0rem;
  display: inline-block;
}
.contact-container img{
  width: 1rem;
  height: auto;
  display: inline;
}
.contact-item{
  display: block;
  padding: 5px 5px 5px 0px;
}
.contact-item-divider{
  margin: 0 auto;
  display: flex;
  background: linear-gradient(90deg, rgba(178,0,0,1) 0%, rgba(231,235,238,1) 100%);
  border: 0;
  height: 1px;
  width: 90%;
}
.contact-item-about-business{
  font-size: medium;
  font-weight: bold;
  color: darkgray;
  padding: 5px 0px 5px 0px;
}

.business-header-details{
  display: inline;
  float: left;
}

.bus-info-tags{
  font-size: small;
  color: gray;
  margin-top: 10px;
  padding: 0 0 0 0.5rem;
}
/* END BIZ PAGE */

/* START BUSINESS EDIT FORM */

.bus-info-page-preview-container{
  position: sticky;
  top: 10px;
}

.business-settings-form-container{
  max-width: 100%;
}

.business-settings-header-text{
  font-size: large;
}

.business-settings-div-breaker{
  margin-top: 1rem;
}

.business-settings-change-confirm{
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
}

.bus-settings-row{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 60% 40%;
}

.bus-settings-avatar{
  vertical-align: middle;
  border: 1px solid #ddd;
  width: auto;
  height: 70px;
}

.bus-avatar-uploadbtn-container{
  width: 30% !important;
  padding: 0.4rem !important;
}

.image-upload-container{
  display: inline;
}

.bus-avatar-gallery-container{
  padding: 20px;
  border: 1px solid black;
  margin: 10px;
  margin-left: 18px;
  display: none;
}

.bus-avatar-gallery-active{
  display: block;
}

.image-list{
  display: inline;
}

.image-list li{
  display: inline;
  position: relative;
}

.image-list img{
  height: 75px;
  width: auto;
  margin: 5px;
  cursor: pointer;
  box-shadow: 0 0 0 4px #fff;
}

.image-list img:hover{
  border: 2px solid black;
}

.image-list img.current{
  border: 2px solid green;
}

.bus-current-avatar{
  border: 4px solid lightgreen;
}

.bus-current-avatar-container{
  position:relative;
  width: inherit;
}

.bus-current-avatar-container h3{
  position:absolute;
  bottom: 10%;
  left: 5%;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.bus-confirm-avatar-change{
  display: none;
  background-color: white;
  border: 2px solid black;
  width: auto;
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin-bottom: -3em;
}

.change-avatar-confirm-text-cont{
  margin-top: 10px;
}

.change-avatar-confirm-text{
  border: 2px solid black;
  border-radius: 5px;
  padding: 2px;
}

@media (max-width: 600px){
  .bus-settings-row{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* END BUSINESS EDIT FORM */

/* POST */

.new-block{
  padding: 10px;
}

.postBox{
  background-color: rgb(255, 255, 255);
  border-bottom-color: rgb(208, 209, 213);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-image-outset: 0px;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-left-color: rgb(223, 224, 228);
  border-left-style: solid;
  border-left-width: 1px;
  border-right-color: rgb(223, 224, 228);
  border-right-style: solid;
  border-right-width: 1px;
  border-top-color: rgb(229, 230, 233);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-top-style: solid;
  border-top-width: 1px;
  color: rgb(20, 24, 35);
  display: block;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  height: auto;
  line-height: 16.0799999237061px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  text-align: left;
  max-width: 1036px;
  word-wrap: break-word;
  margin: 0 auto;
}
.postBox-inner{
  direction: ltr;
  display: block;
  height: auto;
}
.usertext{
  color: rgb(20, 24, 35);
  direction: ltr;
  display: inline;
  font-size: 14px;
  font-weight: normal;
  height: auto;
  line-height: 19.3199996948242px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  text-align: left;
  width: auto;
  word-wrap: break-word;

}
.post-img-all{
  -webkit-box-shadow: rgba(0, 0, 0, 0.0980392) 0px 0px 0px 1.5px inset, rgba(0, 0, 0, 0.0470588) 0px 1px 1px 0px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.0980392) 0px 0px 0px 1.5px inset, rgba(0, 0, 0, 0.0470588) 0px 1px 1px 0px;
  color: rgb(20, 24, 35);
  direction: ltr;
  display: block;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  height: auto;
  line-height: 16.0799999237061px;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  text-align: left;
  width: auto;
  word-wrap: break-word;
  z-index: 0;
  margin-top: 11px;

}
.post-img{
    color: rgb(20, 24, 35);
  direction: ltr;
  display: block;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  height: 512px;
  line-height: 0px;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 1036px;
  word-wrap: break-word;
  background: #e7ebee;

}
.post-img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}
.post-title-cont{
  direction: ltr;
  display: block;
  font-size: 12px;
  background-color: #dcdfe3;
  height: auto;
  position: relative;
  width: auto;
  padding: 12px;
  border-top: 1px solid #333;
}
.post-title{
  color: rgb(20, 24, 35);
  direction: ltr;
  display: block;
  height: auto;
  word-wrap: break-word;
  font-size: 18px;
  font-weight: 500;
}
.post-title2{
  direction: ltr;
  display: block;
  font-size: 12px;
  height: auto;
  margin-bottom: 10px;
  margin-left: 12px;
  margin-right: 12px;
  margin-top: 10px;
  position: relative;

}
.post-title-top{
  color: rgb(20, 24, 35);
  direction: ltr;
  display: block;
  font-family: Georgia, 'lucida grande', tahoma, verdana, arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  height: auto;
  line-height: 1.6; /* was set to 22px */
  margin-bottom: 5px;
  max-height: 110px;
  overflow-x: hidden;
  overflow-y: hidden;
  text-align: left;
  text-decoration: none;
  width: auto;
  word-wrap: break-word;

}
.post-title-mid{
    color: rgb(20, 24, 35);
  direction: ltr;
  display: inline;
  font-size: 12px;
  line-height: 16px;
  overflow-x: hidden;
  text-align: left;
  width: 446px;
  word-wrap: break-word;
  height: auto;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
}
.post-title-cap{
  direction: ltr;
  display: block;
  height: 11px;
  padding-top: 9px;
  position: relative;
  width: 446px;
}
.post-title-cap-text{
  color: rgb(145, 151, 163);
  direction: ltr;
  display: block;
  font-size: 11px;
  height: 11px;
  line-height: 11px;
  overflow-x: hidden;
  overflow-y: hidden;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  width: 446px;
  word-wrap: break-word;
}
.post-group-picrow{
  color: rgb(20, 24, 35);
  direction: ltr;
  display: block;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  min-height: 30px;
  height: auto;
  line-height: 16.0799999237061px;
  text-align: left;
  margin-bottom: 0px;
  position: relative;
}
.posth5{
  color: rgb(20, 24, 35);
  direction: ltr;
  display: block;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 14px;
  font-weight: normal;
  height: auto;
  line-height: 19.3199996948242px;
  margin-bottom: 2px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 22px;
  padding-top: 0px;
  text-align: left;
  width: auto;
}
.post-group-text{
  color: rgb(20, 24, 35);
  direction: ltr;
  display: block;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  height: auto;
  line-height: 16.0799999237061px;
  text-align: left;
  width: auto;
  word-wrap: break-word;
  position: relative;
}
.post-group-date{
  color: rgb(145, 151, 163);
  direction: ltr;
  display: inline;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  font-weight: normal;
  height: auto;
  line-height: 16.0799999237061px;
  text-align: left;
  width: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.post-group-text-top{
  color: rgb(20, 24, 35);
  direction: ltr;
  display: table-cell;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  height: auto;
  line-height: 16.0799999237061px;
  text-align: left;
  vertical-align: top;
  width: auto;
}
.post-group-picrow img{
  border-bottom-color: rgb(59, 89, 152);
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-image-outset: 0px;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-left-color: rgb(59, 89, 152);
  border-left-style: none;
  border-left-width: 0px;
  border-right-color: rgb(59, 89, 152);
  border-right-style: none;
  border-right-width: 0px;
  border-top-color: rgb(59, 89, 152);
  border-top-style: none;
  border-top-width: 0px;
  color: rgb(59, 89, 152);
  cursor: pointer;
  direction: ltr;
  display: block;
  font-family: helvetica, arial, 'lucida grande', sans-serif;
  font-size: 12px;
  height: 40px;
  line-height: 16.0799999237061px;
  text-align: left;
  width: auto;
  float:left;
  padding-right:8px  
}

@media (max-width: 767px)
{
  .post-img{
    height: 100%;
  }
}
.exp-timer{
  direction: ltr;
  display: block;
  font-size: 12px;
  background-color: #dcdfe3;
  height: auto;
  position: relative;
  width: auto;
  padding: 12px;
}

/* END POST */