@font-face {
    font-family: 'Gotham Medium';
    src: 	url('../fonts/gotham/Gotham-Medium.otf');
}
@font-face {
    font-family: 'Gotham Rounded Book';
    src: 	url('../fonts/gotham/GothamRounded-Book.otf');
}
@font-face {
    font-family: 'Gotham Rounded Bold';
    src: 	url('../fonts/gotham/GothamRounded-Bold_0.otf');
}
@font-face {
    font-family: 'Gotham Rounded Medium';
    src: 	url('../fonts/gotham/GothamRounded-Medium_0.otf');
}
@font-face {
    font-family: 'Gotham Rounded Light';
    src: 	url('../fonts/gotham/GothamRounded-Light_0.otf');
}
*{
    font-family: "Gotham Rounded Book", serif;
}
body{
    font-family: "Gotham Bold Regular", serif;
    min-height: 100vh;
}
.bg-light-black{
    background: #e8e5e588;
}
span.label {
    padding: 3px 10px;
    line-height: 13px;
    color: #fff;
    font-weight: 400;
    border-radius: 4px;
    font-size: 9px;
}
a:hover{
    text-decoration: none;
}
.hoverable {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.55s ease-in-out;
    transition: all 0.55s ease-in-out;
}
.hoverable:hover {
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(250, 250, 250, 0.01) !important;
    -webkit-transition: all 0.55s ease-in-out !important;
    transition: all 0.55s ease-in-out !important;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
.alert-info {
    border: 1px solid #2196f3;
    padding: 10px 10px;
    margin-top: 10px;
    font-family: "Gotham Rounded Book";
    font-size: 14px;
    color: rgb(13, 60, 97);
    display: flex;
}
.alert-info_detail {
    margin: 0 10px 0;
}
label.error {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    #register-modal .container{
        padding: 0;
    } 
}