﻿/* CSS Document */
/*================ Subhapriyo =============== */
.error {
  color: red;
  font-size: 0.8em;
}
textarea {
  resize: none;
}
.notes {
  display: block;
  color: #737373;
  font-size: small;
  font-style: italic;
}
.intl-tel-input {
  width: 100%;
  /*margin-bottom: 30px;*/
}
.intl-tel-input .country-list > ul, .intl-tel-input .country-list > li {
  padding: 0px 10px !important;
  margin: 0px auto !important;
}
.intl-tel-input .country-list {
  max-width: 350px;
  overflow-x: hidden;
}
.loading-indicator {
  height: 80px;
  width: 80px;
  background: url("https://choyou.fr/_/templates/images/loading.gif");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
.loading-indicator-overlay {
  background-color: #ffffff;
  opacity: 6;
}
/*================ Circular Images with CSS =============== */
/*https://www.webfx.com/blog/web-design/circular-images-css/*/
.circular--square {
  border-radius: 50%;
}
.circular--landscape {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
}
.circular--landscape img {
  width: auto;
  height: 100%;
  margin-left: -50px;
}
.circular--portrait {
  position: relative;
  /*width: 200px;
  height: 200px;*/
  width: 260px;
  height: 260px;
  overflow: hidden;
  border-radius: 50%;
}
.circular--portrait img {
  width: 90%;
  height: auto;
  border-radius: 50%;
}
/*================ END OF Circular Images with CSS =============== */
.logo {
  float: left;
  /*padding: 10px 0;*/
  width: auto;
}
.left_logo {
    width: 75%;
    /*border: 1px solid red;*/
}
.div_left_site_logo {
    float: left;
    margin: 0px 10px 2px 0px;
}
.site-logo {
    /* width: 50%; */
    width: 90%;
}
.site-logo-link, .mark {
  display: inline-block;
  vertical-align: middle;
  margin: auto;
  font-size: 0;
}
.site-description {
  display: inline-block;
  vertical-align: middle;
}
.site-logo-link + .site-description {
  /*margin-left: 10px;*/
}
.site-logo-link + .site-description .sitename {
  font-size: 2.5rem;
  font-weight: 300;
}
h3.sitename {
  margin: 0;
}
.tagline {
  color: #666666;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
}
.sitename a {
  color: #232c30;
  text-transform: lowercase;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 300;
}
.btn-fahad {
  background-color: #0a2435;
}
@media screen and (max-width: 768px) {
    .themesrow {
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 768px) {
  .site-logo {
    max-height: 60px;
  }
    .site-description{
        display: block;
    }    
  .sitename a {
    font-size: 1.5rem;
  }
  .site-logo-link + .site-description .sitename {
    font-size: 1.5rem;
  }
  #mainContent {
    /*padding-top: 11%;*/
    padding-top: 16%;  
  }
  .logo {
    /*width: 85%;*/
  }
  .countdown-container {
    top: 65%;
  }
}
.modal-body p {
  word-wrap: break-word;
}





#header button{
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: none;
  z-index: 999;
}

@media screen and (max-width: 991px) {
  #header button {
    display: block;
  }

  #navbarNav {
    display: block;
    position: absolute;
    right: -50%;
    transition: .5s;
    top: 0;
    bottom: 0;
    background: #f3f3f3;
    height: 100vh;
    padding-top: 10vh;
  }
}

#header .active_navbar {
  right: 0%;
  padding: 10vh 20vw 0 20vw;
}


#header button span {
    height: 0;
    width: 100%;
    border-top: 2px solid #000000;
    display: block;
    transition: transform 0.3s ease, 
    -webkit-transform 0.3s ease;
}

#header button::before {
    content: '';
    height: 0;
    width: 100%;
    border-top: 2px solid #000000;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 1px 1px;
    transition: transform 0.3s ease, 
    -webkit-transform 0.3s ease;
}

#header button::after {
    content: '';
    height: 0;
    width: 100%;
    border-top: 2px solid #0055ff;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: 1px 1px;
    transition: transform 0.3s ease, 
    -webkit-transform 0.3s ease;
}

#header .active_btn span {
    transform: rotateY(90deg);
}

#header .active_btn::before {
    transform: rotate(45deg);
    width: 138%;
}

#header .active_btn::after {
    transform: rotate(-45deg);
    width: 138%;
}