@charset "UTF-8";
.content_wrap {
  min-height: 100vh;
}

.hide {  
	display: none; 
}

.hide-desktop {
  display: none;
}

@media (max-width: 767px) {
  .hide-desktop {
    display: block;
  }
}

@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  .flex_wrap {
    flex-direction: column;
  }
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.card {
  position: relative;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
}

@media (max-width: 768px) {
  .card {
    padding: 1rem;
  }
}

.green {
  color: #3d9000;
}

.container {
  position: relative;
  margin: auto;
  padding: 0;
}

@media (max-width: 1920px) {
  .container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 100%;
    height: 100%;
    max-width: 960px;
  }
}

.row {
  margin: 0;
}

.comments-wrap {
  padding: 40px 0;
  background: #fff;
  color: #111111;
}

.comments-wrap .container {
  position: relative;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #d3e2f0;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.05);
  background: #fff;
  max-width: 800px;
}

@media (max-width: 768px) {
  .comments-wrap .container {
    padding: 1rem;
  }
}

@media (max-width: 767px) {
  .comments-wrap .container {
    border-radius: 0;
    border: 0;
  }
}

.comments-wrap .title {
  margin-bottom: 1rem;
  text-align-last: left;
  color: #333333;
}

.comment {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .comment {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}

.comment > *:last-child {
  flex: 1 1 100%;
}

.comment:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.comment figure {
  overflow: hidden;
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-right: .5rem;
  border-radius: 50%;
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.comment .text {
  position: relative;
  padding: 1rem;
  background: #eff1f3;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .comment .text {
    flex: 1;
    padding: 0.5em;
    border-radius: 10px;
  }
}

.comment .text .icons {
  position: absolute;
  right: 0;
  bottom: -8px;
  padding: 2px 4px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  font-size: 12px;
}

.comment .text .icons img {
  float: left;
  width: 16px;
  margin-right: 5px;
}

.comment .text .icons img + span {
  float: left;
  margin-right: 5px;
}

.comment p {
  margin-bottom: .5rem;
  font-size: .8rem;
}

.comment p:last-child {
  margin-bottom: 0;
}

.comment p.name {
  font-weight: 700;
  color: #4867aa;
}

@media (max-width: 767px) {
  .comment p {
    font-size: 0.6em;
  }
}

.comment .comment-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.5rem;
  margin-left: calc(40px + .5rem);
}

@media (max-width: 767px) {
  .comment .comment-footer {
    margin-left: 0;
  }
}

.comment .fb-links {
  font-size: 0.7rem;
  color: #4867aa;
}

.comment .fb-links span:not(:last-child) {
  padding: 0 0.5rem;
  cursor: pointer;
  position: relative;
}

.comment .fb-links span:not(:last-child):before, .comment .fb-links span:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
}

.comment .fb-links span:not(:last-child):after {
  content: '·';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.25rem;
  font-size: 150%;
}

.comment .fb-links .date,
.comment .fb-links .time {
  padding: 0 0.5rem;
  color: #999;
  cursor: default;
}

.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #000;
  opacity: 0.6;
}

.maskLoader {
  display: none;
  z-index: 999;
  background-image: url("../images/LandingPage/spin.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.input-error {
  position: absolute;
  right: 5px;
  bottom: 0;
  font-size: 12px;
  color: #e50914;
}

@media (max-width: 767px) {
  .input-error {
    font-size: 10px;
  }
}

.rtl .input-error {
  right: initial;
  left: 5px;
}

button, .button {
  padding: 15px;
  border: 0;
  outline: 0;
  transition: background .2s ease;
  border-radius: 4px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: button;
}

/*===============
|    FOOTER     |
=================*/
.page-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 10px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-footer .footer-links {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  cursor: pointer;
}

.page-footer .footer-links li {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  transition: .2s ease;
  list-style: none;
}

.page-footer .footer-links li:last-child {
  margin-bottom: 0;
}

.page-footer .footer-links li:hover {
  color: #ed1651;
}

@media (max-width: 768px) {
  .page-footer .footer-links li:hover {
    color: inherit;
  }
}

/*===============
|    /FOOTER    |
=================*/

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
