/* class from CKEditor */
.text-tiny {
    font-size: .7em;
}

.text-small {
    font-size: .85em;
}

.text-big {
    font-size: 1.4em;
}

.text-huge {
    font-size: 1.8em;
}

.image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    /* min-width: 100% */
}

.image-style-side {
    float: right;
}

.image.image_resized {
    box-sizing: border-box;
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

img.image_resized {
    max-width: 100%;
}

/* other */

.text-link {
    color: #000;
}

.text-link:hover {
    color: #062576;
}

.btn_1:disabled,
.btn_1:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: auto;
}

.search_bar {
    position: relative;
    margin-top: 8px;
}

.search_bar input[type='text'] {
    border: 1;
    height: 50px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding-left: 15px;
}

.search_bar button[type='submit'] {
    position: absolute;
    right: -1px;
    color: #fff;
    font-weight: 600;
    top: 0;
    border: 0;
    padding: 0 25px;
    height: 50px;
    cursor: pointer;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background-color: #062576;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search_bar button[type='submit']:hover {
    background-color: #0c3292;
}

a.btn_2,
.btn_2 {
    border: none;
    color: #fff;
    background: #212529;
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
}

a.btn_2:hover,
.btn_2:hover {
    background: #000;
    color: #fff;
}

a.btn_2.rounded,
.btn_2.rounded {
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    -ms-border-radius: 25px !important;
    border-radius: 25px !important;
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #ececec
}

a:hover {
    color: #0c3292;
}

.badge {
    text-transform: uppercase;
    letter-spacing: .02em;
    position: relative;
    bottom: 1px;
    vertical-align: middle;
}

.badge {
    display: inline-block;
    padding: 0.5em 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.3125rem;
}

.badge-blue {
    background: #aad5ff;
    color: #062576 !important;
}

.badge-dark {
    background: darkgray;
    color: white !important;
}

.badge-light {
    background: #f3f5fb;
    color: #3755BE !important;
}

.avatar_container {
    position: relative;
    width: 100%;
    /* The size you want */
}

.avatar_container:after {
    content: "";
    display: block;
    padding-bottom: 100%;
    /* The padding depends on the width, not on the height, so with a padding-bottom of 100% you will get a square */
}

.avatar_container img {
    position: absolute;
    /* Take your picture out of the flow */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* Make the picture taking the size of it's parent */
    width: 100%;
    /* This if for the object-fit */
    height: 100%;
    /* This if for the object-fit */
    object-fit: cover;
    /* Equivalent of the background-size: cover; of a background-image */
    object-position: center;
    border-radius: 50%;
}