/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

#header-carousel img {
  width: 100%;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

i,
span {
    display: inline-block;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebar {
    padding: 5%;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    background: #fff;
    color: #fff;
    border-right: solid #999 1px;
    transition: all 0.6s;
}

#sidebar.active {
    min-width: 20%;
    max-width: 20%;
    text-align: center;
}

#sidebar.active .sidebar-header h3,
#sidebar.active .CTAs {
    display: none;
}

#sidebar.active .sidebar-header strong {
    display: block;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

.formdiv {
  padding: 10px;
  border-right: solid #999 1px;
}
.hintdiv {
  padding: 10px;
}
.warning {
  padding: 15px;
  color: darkred;
  background-color: lightgrey;
}

#resultdisplay {
  color: #999;
}
#resultdisplay h5 {
  color: darkblue;
}
#resultdisplay strong {
  color: blue;
}

#back-btn {
  float: left;
  padding-left: 10%;
}
#go-btn {
  float: right;
  padding-right: 10%;
}
#proceed-btn {
  float: right;
  padding-right: 10%;
}
#proceedbtn {
  background-color: darkblue;
}

.footer {
  color: lightblue;
  background-color: #09173a;
  min-height: 100px;
}
.support {
  margin-top: 20px;
}
.footer a {
  color: white;
}
.footer a:hover {
  color: lightblue;
}
.logo-footer img {
  margin-top: 20px;
  width: 100%;
}


/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important;
    }
    .dropdown-toggle::after {
        top: auto;
        bottom: 10px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
    #sidebar.active {
        margin-left: 0 !important;
        height: 400px;
        overflow: hidden;
    }
    #sidebar .sidebar-header h3,
    #sidebar .CTAs {
        display: none;
    }
    #sidebarCollapse span {
        display: none;
    }
}
