/* GLOBAL BASE CSS */

/* 1. Box-sizing universel */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

html,
body {
    height: 100%;
    line-height: 1.5;
}

.ts-control {
    border: none !important;
    outline: none !important;
}

.my-loading-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.my-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: my_spin 1s linear infinite;
}

@keyframes my_spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
