.username{

}

.welcome {
    margin-top:500px;
}

.center-absolute {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.branding {
    font-family: 'Catamaran';
}

[class^="icon-"], [class*=" icon-"] {
    display: inline-block;
    width: 100%;
}

.g-signin2 > div {
    margin: 0 auto;
}

.g-signin2 {
    width: 100%;
}

.account-info {
    margin: 0 auto;
}

.border-gray-4 {
    border-style: solid;
    border-width: 4px;
    border-color: #2c3e55;
}

.padding-half {
    margin-top: 25vh;
    display:inline-block;
}

.logo {
    width: 200px;
}

@media only screen and (orientation: landscape) {
    .padding-half {
        margin-top: 25vh;
        display:inline-block;
    }
    .slidecontainer {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 60%; /* Width of the outside container */
    }

    .image-fill {
        width: 60%;
    }
}

@media only screen and (orientation: portrait) {
    .padding-half {
        margin-top: 0vh;
        display:inline-block;
    }
    .slidecontainer {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 90%; /* Width of the outside container */
    }

    .image-fill {
        width: 90%;
    }
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.image-container {
    width: 90%;
    height: 400px;
}





/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 20px; /* Specified height */
    background: #2c3e55; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

  /* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #4CAF50; /* Green background */
    cursor: pointer; /* Cursor on hover */
}
  
.slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #4CAF50; /* Green background */
    cursor: pointer; /* Cursor on hover */
}