h1 {
    color: #1da1f2;
    justify-content: center;
}

.landingPage {
    height: 100%;
}

.landingPageOuterContainer {
    display: table;
    margin: auto;
}

.landingPageInnerContainer {
    display: table-cell;
    vertical-align: middle;
    width: 40%;
}

#landingPageHeading {
    text-align: center;
}

.contentContainer {
    display: flex;
    justify-content: center;
}

.demoPageContentContainer {
    padding-left: 10% !important;
}

.demoPageCardContainer {
    top: 10% !important;
    width: 1100px;
}

.buttonContainer {
    width: 50%;
}

.inputPadding {
    padding: 12px 0;
}

.multipleInputContainer {
    display: inline-flex;
    gap: 20px;
}

.detailsDisplay {
    display: inline-flex;
}

.detailsInnerContainer {
    width: 480px;
    padding-top: 10px;
}

.mapContainer {
    height: auto;
    width: 520px;
}

#diffMapContainer {
    padding-left: 6px;
}

.infoParagraph {
    padding-left: 12px;
}

.button {
    border-radius: 6px;
    padding: 12px;
    margin: 6px 0;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    background-color: #4cc0ba;
    text-align: center;
}

.buttonGap {
    gap: 20px;
}

.button:hover {
    background: #34938e;
}

.button > a {
    color: #fff;
    text-decoration: none;
}

input {
    background-color: #fff;
    width: 100%;
    margin: 10px;
    padding: 0 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    justify-content: space-between;
    height: 40px;
    border: 1px solid #4a4b4f;
}

.checkboxSwitch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.checkboxSwitch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e1e1e3;
    border-radius: 6px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 6px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #4cc0ba;
}

input:focus + .slider {
    box-shadow: 0 0 1px #4cc0ba;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

input::placeholder {
    color: #4a4b4f;
    font-weight: 500;
}
input:focus {
    outline: 0;
}

.tab {
    display: none;
}
