body {
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -.1px;
    font-smoothing: grayscale;
    margin: 0;
    color: var(--general-text-color);
    background-color: var(--background-color-body);
    line-height: 1.5;
    overflow-x: hidden;
}

a{
    text-decoration: none !important;
    color: var(--link-color);
    transition: color .3s ease;
}

h5, h6 {
    color: #333333;
    font-family: Rubik,sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: .5em;
    letter-spacing: .25px;
    margin-top: 1em;
    line-height: 1.1;
}

a:hover {
    color: #3287cd;
}

#container{
    position: relative;
    display: block;
}

.ct-col{
    padding-right: 15px;
    padding-left: 15px;
}

.color-white
{
    color: white !important;;
}

.color-primary
{
    color: var(--primary-color) !important;;
}

.color-secondary
{
    color: var(--secondary-color) !important;;
}

.color-black
{
    color: #333333 !important;;
}

.bg-white
{
    background-color: white !important;;
}

.bg-primary
{
    background-color: var(--primary-color) !important;;
}

.bg-secondary
{
    background-color: var(--secondary-color) !important;;
}

.bg-black
{
    background-color: #333333 !important;;
}

.border-color-white
{
    border-color: white !important;;
}

.border-color-primary
{
    border-color: var(--primary-color) !important;;
}

.border-color-secondary
{
    border-color: var(--secondary-color) !important;;
}

.border-color-black
{
    border-color: #333333 !important;;
}

.icon-white
{
    fill: white !important;;
}

.icon-primary
{
    fill: var(--primary-color) !important;;
}

.icon-secondary
{
    fill: var(--secondary-color) !important;;
}

.icon-black
{
    fill: #333333 !important;
}

*:disabled, .disabled, [disabled], [readonly] {
    cursor: not-allowed !important;
    background-color: #f2f2f2 !important;
    opacity: .65;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-color: #c2ceda !important;
}

.form-control {
    border-radius: 4px !important;
    font-size: 0.9rem;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem 0rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
}

.float-label-custom label {
    font-size: .90rem;
}

.form-control:not(textarea), .select2-container .select2-selection--single {
    height: calc(2.2rem) !important;
}

.table td, .table th {
    padding: .3rem;
    vertical-align: middle;
    border-top: 0px;
}

.table thead th{
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-sticky thead tr:nth-child(1) th{
    position: sticky;
    top: 0;
}

.form-control:not(textarea), .select2-container .select2-selection--single {
    height: calc(2.1rem) !important;
}

.select2-selection{
    font-size: 0.78rem;
}

#wrapper [id^=attachment]{
    max-width: 100%;
    width: unset!important;
}

#wrapper_notification{
    position: fixed;
    min-height: 200px;
    top: 10px;
    right: 0;
    z-index: 10000000;
    overflow-y: auto;
    max-height: 80vh;
}

#wrapper_notification .toast.info{
    background: #a7bacb;
}

#wrapper_notification .toast.success{
    background: #22965860;
}

#wrapper_notification .toast.warning{
    background: #FFC10799;
}

#wrapper_notification .toast.danger{
    background: #D3382499;
}

.ct-post-edit-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #e8e6df;
    border-radius: 28px;
    box-shadow: 0 8px 8px 0 rgb(0 0 0 / 20%);
    z-index: 5;
}

.ct-post-edit-link .ct-icon {
    transition: transform .3s ease;
}

.ct-post-edit-link:hover .ct-icon {
    transform: rotate(60deg);
}

.ct-icon, .ct-button{
    transition: all .3s ease;
}

.ct-button .ct-icon {
    fill: #333333;
}

.ct-button {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 36px;
    padding: 0 16px;
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    text-align: center;
    color: #fff;
    letter-spacing: .75px;
    transition: all .3s ease;
    text-transform: uppercase;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Button Primary */

.ct-button.ct-button--primary{
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.ct-button.ct-button--primary.ct-button--inverse{
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.ct-button.ct-button--primary .ct-icon {
    fill: #ffffff;
}

.ct-button.ct-button--primary.ct-button--inverse .ct-icon {
    fill: var(--primary-color);
}

.ct-button.ct-button--primary:not(.onSubmit):hover, .ct-button.ct-button--primary:not(.onSubmit):focus{
    color: var(--primary-color);
    background-color: #ffffff;
}

.ct-button.ct-button--primary.ct-button--inverse:hover, .ct-button.ct-button--primary.ct-button--inverse:focus{
    color: #ffffff;
    background-color: var(--primary-color);
}

.ct-button.ct-button--primary:hover .ct-icon, .ct-button.ct-button--primary:focus .ct-icon{
    fill: var(--primary-color);
}

.ct-button.ct-button--primary.ct-button--inverse:hover .ct-icon, .ct-button.ct-button--primary.ct-button--inverse:focus .ct-icon{
    fill: #ffffff;
}

/* Button Secondary */

.ct-button.ct-button--secondary{
    background-color: var(--secondary-color);
    color: #ffffff;
    border: 1px solid var(--secondary-color);
}

.ct-button.ct-button--secondary.ct-button--inverse{
    background-color: #ffffff;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.ct-button.ct-button--secondary .ct-icon {
    fill: #ffffff;
}

.ct-button.ct-button--secondary.ct-button--inverse .ct-icon {
    fill: var(--secondary-color);
}

.ct-button.ct-button--secondary:not(.onSubmit):hover, .ct-button.ct-button--secondary:not(.onSubmit):focus{
    color: var(--secondary-color);
    background-color: #ffffff;
}

.ct-button.ct-button--secondary.ct-button--inverse:hover, .ct-button.ct-button--secondary.ct-button--inverse:focus{
    color: #ffffff;
    background-color: var(--secondary-color);
}

.ct-button.ct-button--secondary:hover .ct-icon, .ct-button.ct-button--secondary:focus .ct-icon{
    fill: var(--secondary-color);
}

.ct-button.ct-button--secondary.ct-button--inverse:hover .ct-icon, .ct-button.ct-button--secondary.ct-button--inverse:focus .ct-icon{
    fill: #ffffff;
}

/* Button Red */

.ct-button.ct-button--red{
    background-color: #ef5656;
    border: 1px solid #ef5656;
    color: #ffffff;
}

.ct-button.ct-button--red.ct-button--inverse{
    background-color: #ffffff;
    color: #ef5656;
    border: 1px solid #ef5656;
}

.ct-button.ct-button--red .ct-icon {
    fill: #ffffff;
}

.ct-button.ct-button--red.ct-button--inverse .ct-icon {
    fill: #ef5656;
}

.ct-button.ct-button--red:not(.onSubmit):hover, .ct-button.ct-button--red:not(.onSubmit):focus{
    color: #ef5656;
    background-color: #ffffff;
}

.ct-button.ct-button--red.ct-button--inverse:hover, .ct-button.ct-button--red.ct-button--inverse:focus{
    color: #ffffff;
    background-color: #ef5656;
}

.ct-button.ct-button--red:hover .ct-icon, .ct-button.ct-button--red:focus .ct-icon{
    fill: #ef5656;
}

.ct-button.ct-button--red.ct-button--inverse:hover .ct-icon, .ct-button.ct-button--red.ct-button--inverse:focus .ct-icon{
    fill: #ffffff;
}

/* Button White */

.ct-button.ct-button--white{
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: #ffffff;
}

.ct-button.ct-button--white.ct-button--inverse{
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: #ffffff;
}

.ct-button.ct-button--white.ct-button--inverse .ct-icon {
    fill: #ffffff;
}

.ct-button.ct-button--white .ct-icon {
    fill: #333333;
}

.ct-button.ct-button--white.ct-button--inverse{
    background: transparent;
    font-weight: 400;
}

.ct-button.ct-button--white:hover, .ct-button.ct-button--white:focus{
    background-color: hsla(0,0%,100%,.3);
}

.ct-button:hover{
    text-decoration: none;
}

.ct-button--text {
    padding: 0;
    min-width: unset;
    font-weight: 500;
    background: transparent;
    color: #333;
    text-decoration: underline !important;
}

.descripcion-bloque{
    color: #777;
    font-size: 13px;
}

.modulo{
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 1em;
}

.modulo table td{
    padding:5px 10px;
}

.no-visible{
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
}

.respuesta{
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    width: 100%;
}

#form_cuestionario h2, #form_cuestionario h3, #form_cuestionario h4, #form_cuestionario h5, #form_cuestionario h6{
    font-weight: 600;
}

#form_cuestionario h5, #form_cuestionario h6{
    text-decoration: underline;
}

.enunciado{
    align-self: center;
}

.respuesta .form-check-input{
    margin: 5px -6px;
}

.respuesta-10 > div{
    flex: 1 1 25%;
}

.blank-image{
    width: 25px;
    height: 25px;
}

.opcion{
    flex: 1 1 auto;
}

#formulario_solicitud{
    padding: 10px;
    margin: auto;
}

@media (max-width: 575px) {
	h3, .h3{
		font-size: 1.2rem;
	}
}