﻿body {
    /*padding-top: 50px;*/
    padding-bottom: 20px;
   
}
 
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
textarea {
    max-width: 400px;
   
}

select
 {
    max-width: 250px;
}

input.form-control {
    border-radius: 1.8vh;
    font-size: 15px;
}

    select.form-control {
        padding-top: 0;
        padding-bottom: 0;
        padding-left:8px;
        height: 25px;
        
        font-size: 15px;
        border-radius: 1.8vh;
        border-width: 0.1vh;
        
    }

.dateInput {
    max-width: 150px;
}
.primaryButton {
    color: white;
    background-color: #337ab7;
    border-radius: 8px;
}

.secondaryButton {
    color: #fff;
    background-color: #7d7878;
    border-color: #6c757d;
    border-radius: 8px;
}
/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
    body {
        background-color: lightblue;
    }
    [class*="col-"] {
        width: 100%;
    }
}

* {
    box-sizing: border-box;
}
/*[class*="col-lg"] {
    float: left;
    padding: 15px;
    border: 1px solid #d5d9dc;
}*/
.row::after {
    content: "";
    clear: both;
    display: table;
}