  /* Theme */

  html, body {
    height: 100%;
  }

  .hidden 
  {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
  }


  input,textarea {
    outline: none;
    transition: all 300ms ease-in-out;
  }

  .page-title {
      text-align: center;
  }

  .page-title h1 {
      font-size: 1.4em;
      margin-bottom: 15px;
  }

  .page-title .branding {
    font-size: 4em;
    color: #5036da;
  }

  @media (min-width: 567px) {
      .page-title h1 {
          font-size: 2em;
      }
  }

  @media (min-width: 768px) {
    .page-title h1 {
        font-size: 2.8em;
    }
}

  /* Topbar */

  .topbar {
    display: none;
  }

  @media (min-width: 768px) {
    
  .topbar {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding: 10px 0;
  }

  .topbar-left {
      display: flex;
      align-items: center;
  }


  .topbar-right {
      align-self: center; 
  }
}



  .card {
    padding: 30px;
  }

  .card-theme-default {
    font-size: 14px;
    border: none;
  }
  .card-theme-default.card-raised{
    box-shadow: 2px 3px 20px 10px #f1eff7;
    border: none;
  }

  .section {
    padding-top: 0px;
  }

  .stripe {
    padding: 50px 0 50px 0;
  }

  .stripe-purple {
    background-color: #fbfbff;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 50px;
  }

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

  /* ERROR BAR */
  .errorbar {
    display: none;
    padding: 15px 0;
    background-color: #dca35d;
    color: #ffffff;
    font-size: 14px;
  }

  

  /* Page Title */
  .branding {
      margin-top: 80px;
      margin-bottom: 50px;
  }

  .branding-title {
    font-family: 'Megrim', sans-serif;
    color: #5036da;
    font-size: 3em;
  }

  @media (min-width: 576px) {
    .branding {
      margin-top: 100px;
    }

    .branding-title {
      font-size: 4em;
    }
  }
 



  /* url form */
  .url-form {
      position: relative;
    display: flex;
      margin: auto;
      max-width: 600px;
  }

  
  .url-icon {
    position: absolute;
    top: 16px;
    left: 18px;
}


  .url-input {
      width: 100%;
      flex-grow: 1;
      border: 1px solid #d9d9e4;
      padding: 15px 69px 15px 50px;
      border-radius: 25px;
      /*border-radius: 25px 0 0 25px;*/
  }

  .url-input:focus {
    box-shadow: inset 2px 2px 5px #efecf3;
  }

  .shorten-button {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 10px 15px;

    align-self: center;
    text-align: center;
   
    border-radius: 25px;
    border: 1px solid #5036da;
    cursor: pointer;
    outline: none;
  }

  .shorten-button .label-desktop {
    display: none;
  }

  .shorten-button:active {
    background-color: #664cf1;
  }

  .shorten-button:focus {
    outline: none;
  }

  @media (min-width: 567px) {
      .url-form {
        flex-direction: row;
      }
      .url-input {
        padding: 15px 10px 15px 50px;
        border-radius: 25px 0 0 25px;
      }
      .shorten-button {
        position: static;
        border-radius: 0 25px 25px 0;
        padding: 15px 40px;
      }
      .shorten-button .label-mobile {
        display: none;
      }
      .shorten-button .label-desktop {
        display: inline-block;
      }
  }

  .callout {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 100px;
      padding: 0 10px;
      border-radius: 10px;
      font-size: 16px;
      line-height: 1.6;
      text-align: center;
  }




  .callout h2 {
      font-size: 16px;
      color: #5036da;
  }
  


  .button-primary {
      background-color: #5036da;
      color: #ffffff;

  }

  .button-secondary {
      background-color: #46c54c;
      color: white;
  }

  a.button-primary {
    background-color: #5036da;
    color: #ffffff;
  }

  a.button-secondary {
    background-color: #46c54c;
    color: #ffffff;
  }


  /* Header */
  .header {
      border-bottom: 1px solid #eee;
  }

  .header .container {
      padding: 0;
  }

  @media (min-width: 567px) {
      .header .container {
        padding: 0 20px;
      }
  }

  /* Main */
.main {
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .main {
    padding-bottom: 100px;
  }
}

  /* Main Menu */
  .main-menu,
  .auth-menu {
    font-size: 14px;
  }

  .auth-menu .btn {
    font-size: 14px;
  }

  .main-menu .nav-link  {
    position: relative;
  }
  
  .main-menu .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 1px;
    background-color: #5036da;
  }

  @media (min-width: 567px) {
        .main-menu {
            flex-direction: row;
            align-items: center;
        }

        .main-menu .nav-link {
            padding: 0;
        }

        .main-menu .nav-item + .nav-item {
            border: none;
            padding-left: 20px;
        }

        
        .auth-menu .nav-item + .nav-item  {
          padding-left: 10px;
        }

        .main-menu .button {
            margin: 0;
        }
  }
  




  .footer-wrapper {
    height: 48px;
    border-top: 1px solid #dadce3;
  }

  .footer {
      display: flex;
      justify-content: space-between;
      padding: 15px 0;
      font-size: 12px;
  }
  
  .footer-right {
      text-align: right;
  }

  @media (min-width: 567px) {
    .footer {
      font-size: 14px;
    }
  } 

  .short-url-form {
      display: flex;
      flex-direction: column;
      margin-top: 20px;
  }

  .short-url-input {
        margin-bottom: 20px;
        padding: 15px 20px;
        border-radius: 25px;
        border: 1px solid #d9d9e4;
  }

  .short-url-input:focus {
    box-shadow: inset 2px 2px 5px #cccccc;
  }

  .text-center {
      text-align: center;
  }


/* shorp */


.shorp {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.shorp-container {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.shorp-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.shorp h2 {
    margin-top: 0;
}

.shorp-close {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 25px;
    height: 25px;
    display:flex;
    align-items: center;
    justify-content: center;
}


.shorp-section-title {
  font-size: 14px;
  font-weight: normal;
  color: #000000;
}

.qr {
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 155px;
  margin-bottom: 20px;
}

.qr-loader {
  display: none;
}

.qr-svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}


#copy-button {
  transition: all 300ms ease-in-out;
}

/* Utils */
.text-primary {
  color: #5036da;
}

.text-black {
  color: #26263a;
}

.fill-orange {
  fill: #d25529;
}

.fill-green {
  fill: #42b195;
}

.fill-primary {
  fill: #b174e4;
}

/* Solutions */

.jumbotron {
  padding-bottom: 60px;
  text-align: center;
  background-image: url(../img/section_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background: rgba(242,250,248,1);
  background: -moz-linear-gradient(left, rgba(242,250,248,1) 0%, rgba(235,223,245,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(242,250,248,1)), color-stop(100%, rgba(235,223,245,1)));
  background: -webkit-linear-gradient(left, rgba(242,250,248,1) 0%, rgba(235,223,245,1) 100%);
  background: -o-linear-gradient(left, rgba(242,250,248,1) 0%, rgba(235,223,245,1) 100%);
  background: -ms-linear-gradient(left, rgba(242,250,248,1) 0%, rgba(235,223,245,1) 100%);
  background: linear-gradient(to right, rgba(242,250,248,1) 0%, rgba(235,223,245,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2faf8', endColorstr='#ebdff5', GradientType=1 );
}


.jumbotron h1 {
  font-size: 3.6em;
  margin-bottom: 20px;
}

.jumbotron p {
  line-height: 1.4;
}

.jumbotron-header {
  padding: 60px 0;
}

.main-features {
  display: flex;
  justify-content: space-between;
}

.main-features .box {
  flex: 0 1 49%;
  text-align: left;
  padding: 30px 30px;
}

/* Feat component*/
.feat-theme-default.feat {
  padding: 15px 0;
}
.feat-theme-default .feat-title {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 16px;
}

.feat-theme-default .feat-body {
  font-size: 14px;
}

.feat-theme-default .feat-title:before {
  content: '';
  width: 42px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: -20px;
}

.introduction {
  font-size: 14px;
}

@media (min-width: 576px) {
  .feat-theme-default .feat-title {
    font-size: 20px;
  }

  .feat-theme-default.feat {
    padding: 0 30px;
  }
}

/* Media Component */
.media {
  display: flex;
}

.media-title {
  margin-top: 0;
}

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

.media-dir-left .media-body{
  padding-left: 20px;
}

.media-dir-right .media-body{
  padding-right: 20px;
}

.media-icon {
  flex: 0 1 auto;
}

.media-body {
  flex: 1 1 auto;
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  bottom: 100%;
  background-color: #f7f7f7;
  z-index: 199;
  transition: all 300ms ease-in-out;
}

#mobile-menu.open {
  top: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  #mobile-menu.open {
    top: -100%;
    bottom: 100%;
  }
  .mobile-menu-open {
    display: none;
  }
}

.mobile-menu {
  padding-top: 30px;
  font-size: 18px;
}

.mobile-menu .nav-item {
  padding: 5px 0;
}

.mobile-menu .nav-item .active {
  position: relative;
}

.mobile-menu .nav-item .active::after {
  content: '';
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #5036da;
}


/* Logotype */
.logotype {
  font-family: 'Megrim', sans-serif;
  color: #5036da;
  font-size: 3em;
}

.logotype-lg {
  font-size: 4em;
}

/* Cross */
.cross {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 25px;
  width: 25px;
}

.cross::before,
.cross::after {
  content: '';
  border-radius: 1px;
  height: 1px;
  width: 100%;
  position: absolute;
  background-color: #5036da;
}

.cross::before {
  top: 12px;
  left: 0;
  transform-origin: center;
  transform: rotate(45deg);
}

.cross::after {
  top: 12px;
  left: 0;
  transform-origin: center;
  transform: rotate(-45deg);
}

/* Hamburger */
.hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  z-index: 1;
}  

.hamburger span {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #5036da;
}

.hamburger span::after,
.hamburger span::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #5036da;
}

.hamburger span::after {
  bottom: -7px;
}

.hamburger span::before {
  top: -7px;
}


/* Page Container */
.page-container {
  position: relative;
  min-height: 100%;
  margin-bottom: -55px;
  padding-bottom: 100px;
}

/* Auth Form */
.auth-form {
  margin-top: 80px;
}

.auth-form .logotype {
  font-size: 3em;
}

.auth-form h1 {
  font-size: 18px;
  font-weight: normal;
  color: #000000;
}

.auth-form-header {
  margin-bottom: 25px;
}

@media (min-width: 576px) {
  .auth-form {
    margin-top: 100px;
  }

  .auth-form .logotype {
    font-size: 4em;
  }

  .auth-form-header {
    margin-bottom: 50px;
  }
}


/* Parsley Styles */
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  border: 1px solid #B94A48;
}

.parsley-errors-list {
  margin: 5px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  color: #B94A48;

  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}