:root {
    --primary-font: 'Lato', sans-serif;
    --base-font-size: 16px;
    --primary-color: #f52f6e;
    --secondary-color: #2ecc71;
    --primary-text-color: rgba(0, 0, 0, 0.5);
    --container-width: 90%;
    --border-color: rgb(197 197 197 / 50%);
    --border-sc-color: #dee2e6;
    --input-color: #838383;
    --btn-primary-bg-color: linear-gradient(60deg, #26c6da, #00acc1);
    --btn-danger-bg-color: linear-gradient(60deg, #ef5350, #e53935);
    --btn-success-bg-color: linear-gradient(60deg, #66bb6a, #43a047);
    --btn-warning-bg-color: linear-gradient(60deg, #ffa726, #fb8c00);

    --btn-hover-primary-bg-color: linear-gradient(60deg, #00acc1, #26c6da);
    --btn-hover-danger-bg-color: linear-gradient(60deg, #e53935, #ef5350);
    --btn-hover-success-bg-color: linear-gradient(60deg, #43a047, #66bb6a);
    --btn-hover-warning-bg-color: linear-gradient(60deg, #fb8c00, #ffa726);

    --box-shadow-primary-color: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px rgba(0, 188, 212, .4);
    --box-shadow-danger-color: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px rgba(244, 67, 54, .4);
    --box-shadow-success-color: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px rgba(76, 175, 80, .4);
    --box-shadow-warning-color: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px rgba(255, 152, 0, .4);
}

*,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-size: var(--base-font-size);
}

a {
    text-decoration: none;
    color: var(--primary-text-color);
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {

    line-height: 1;
    font-family: var(--primary-font);
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

label.required:after {
    content: '(*)';
    margin-left: 5px;
    color: var(--primary-color);
}

.btn {
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all .5s ease-in-out !important;
    -webkit-transition: all .5s ease-in-out !important;
}

.btn-danger {
    background: var(--btn-danger-bg-color);
    color: #fff;
    box-shadow: var(--box-shadow-danger-color);
}

.btn-primary {
    background: var(--btn-primary-bg-color);
    color: #fff;
    box-shadow: var(--box-shadow-primary-color);
}

.btn-success {
    background: var(--btn-success-bg-color);
    color: #fff;
    box-shadow: var(--box-shadow-success-color);
}

.btn-warning {
    background: var(--btn-warning-bg-color);
    color: #fff;
    box-shadow: var(--box-shadow-warning-color);
}

.btn-danger:hover {
    background: var(--btn-hover-danger-bg-color);
}

.btn-primary:hover {
    background: var(--btn-hover-primary-bg-color);
}

.btn-success:hover {
    background: var(--btn-hover-success-bg-color);
}

.btn-warning:hover {
    background: var(--btn-hover-warning-bg-color);
}

.btn i {
    margin-right: 10px;
}

.container {
    max-width: 1440px;
    width: var(--container-width);
    height: auto;
    margin: 0 auto;
    padding: 20px;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

.content {
    font-size: 18px;
    color: #333;
}

.col-12 {
    width: 100%;
    position: relative;
}

.col-11 {
    width: calc(91.66% - 15px);
    position: relative;
}

.col-10 {
    width: calc(83.33% - 15px);
    position: relative;
}

.col-9 {
    width: calc(75% - 15px);
    position: relative;
}

.col-8 {
    width: calc(66.66% - 15px);
    position: relative;
}

.col-7 {
    width: calc(58.33% - 15px);
    position: relative;
}

.col-6 {
    width: calc(50% - 15px);
    position: relative;
}

.col-5 {
    width: calc(41.66% - 15px);
    position: relative;
}

.col-4 {
    width: calc(33.33% - 15px);
    position: relative;
}

.col-3 {
    width: calc(24.33% - 15px);
    position: relative;
}

.col-2 {
    width: calc(16.66% - 15px);
    position: relative;
}

.col-1 {
    width: calc(8.33% - 15px);
    position: relative;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}