html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body div.container {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    /*margin-bottom: 60px;*/
}

div.page-container {
    padding: 0 15%;
}

.color-title {
    color: deepskyblue;
}

.banner-legend {
    position: absolute;
    display: inline;
    background-color: #fff;
    padding: 15px;
    width: auto;
    max-width: 35%;
}

    .banner-legend.banner-legend-top {
        top: 15%;
    }

    .banner-legend.banner-legend-left {
        left: 15%;
    }

    .banner-legend.banner-legend-right {
        right: 15%;
    }

    .banner-legend.banner-legend-bottom {
        bottom: 15%;
    }

.small-list-icons img {
    float: left;
    max-width: 64px;
    max-height: 64px;
}

/*

.block-center-absolute {
    position: absolute;
    left: 25%;
    background-color: white;
    top: 0;
    bottom: 0;
    padding: 10px;
}*/
/*
@media screen and (min-width: 1000px) {
    .block-center-absolute {
        position: initial;
        background-color: white;
        padding: 10px;
        left: 0;
    }
}

*/

.required::after {
    content: '*';
    color: red;
    font-weight: bold;
    margin-left: 5px;
    font-size: 1em;
}


.bg-getaround {
    background: #b01aa7;
    background-color: #b01aa7;
}

.bg-roadstr {
    background: #CA0505;
    background-color: #CA0505;
}

.badge-rent {
    margin: 5px !important;
    float: left;
}

    .badge-rent img {
        border-radius: 24px;
    }

.isInUse .provider-pill {
    opacity: .25;
}


.hidden-block {
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateY(25px);
}

.show-block {
    opacity: 1;
    transform: translateY(0);
}

.carousel-control {
    transition-property: opacity, background-color;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    background-color: rgba(0,0,0,0.25);
}

.carousel-control-icon {
    transition: opacity 0.5s ease-in-out;
    opacity: 0.75;
    width: 100px;
    height: 100px;
    /*background: red;*/
}

.carousel-control:hover .carousel-control-icon {
    opacity: 1;
}

.carousel-control:hover {
    background-color: rgba(0,0,0,0.5);
}

.ad-detail-block {
    padding-left: 2%;
}

.alert.notifications {
    border: 1px solid black;
    border-radius: 15px;
    padding: 5px;
}

    .alert.notifications ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .alert.notifications ul li {
        margin: 10px;
        padding: 0;
    }

    .alert.notifications.alert-danger {
        border-color: red;
    }

    .alert.notifications.alert-success {
        border-color: green;
    }
