@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* 	-----------------------------------------------------
------------------- General Styles ------------------
----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: 4px-box;
    -moz-box-sizing: 4px-box;
    box-sizing: 4px-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,
font,
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 {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background-color: transparent;
}

blockquote,
q {
    quotes: none;
}

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

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

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

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #29ABE2;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #FF5764;
    text-decoration: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
}

/* 	-----------------------------------------------------
---------------------- Login Styles ---------------------
----------------------------------------------------- */
.login-section {
    height: 100vh;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #29abe2 50%, #29abe2 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-section .form-panel {
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.login-section .image-panel {
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-section .image-panel img {
    width: auto;
    height: 100vh;
}

.four-columns {
	display: flex;
	justify-content: flex-start;
	gap: 30px;
}

.four-columns .column {
	width: 23.2%;
}

.form-section {
    margin: 50px auto;
    width: 100%;
    max-width: 400px;
}

.form-section figure {
    margin: 0 auto;
    text-align: center;
}

.form-section p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #8181A5;
    padding: 10px 0;
    display: block;
}
.form-section label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #8181A5;
    display: block;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #29ABE2;
}

.form-section h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    color: #000000;
    padding: 10px 0;
}

.form-section h6 strong {
    display: block;
}

.form-section .filed {
    padding-top: 20px;
}

.form-section input[type="text"],
.form-section input[type="number"],
.form-section input[type="tel"],
.form-section input[type="email"],
.form-section input[type="password"],
.form-section input[type="date"],
.form-section select,
.form-section textarea {
    margin: 0;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    color: #000000;
}

.form-section textarea {
    height: 320px;
    overflow: auto;
    resize: none;
}

.form-section ::placeholder {
    color: #000000;
    opacity: 1;
}

.form-section ::-ms-input-placeholder {
    color: #000000;
}

.form-group {
    display: block;
    margin: 15px 0;
    padding-left: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #000000;
}

.form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #29ABE2;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    position: absolute;
    left: -40px;
    top: 0;
}

.form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: -32px;
    width: 6px;
    height: 14px;
    border: solid #29ABE2;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-group label a {
    color: #000000;
    text-decoration: underline;
}

.primary-button.button--small {
    padding: 6px 25px;
    min-width: 0;
}

.form-section input[type="submit"],
.primary-button {
    padding: 10px 25px;
    width: auto;
    min-width: 180px;
    height: auto;
    background-color: #FBB03B;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

.form-section input[type="submit"]  {
    margin: 25px 0;
}


button[type="submit"] {
    border: none;
    outline: none;
}

.form-section button[type="submit"],
.form-section a[type="submit"],
.secondary-button {
    padding: 10px 25px;
    width: auto;
    min-width: 180px;
    height: auto;
    background-color: #29ABE2;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

.form-section button[type="submit"],
.form-section a[type="submit"] {
    margin: 25px 0;
}

.form-section button[type="reset"],
.form-section a[type="reset"],
.tertiary-button {
    padding: 10px 25px;
    width: auto;
    min-width: 180px;
    height: auto;
    background-color: #FD6050;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

.form-section button[type="reset"],
.form-section a[type="reset"] {
    margin: 25px 0;
}

.form-section button[type="button"] {
    margin: 60px 0 0 0;
    padding: 10px 25px;
    width: auto;
    min-width: 180px;
    height: auto;
    background-color: #FBB03B;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

[disabled] {
    background-color: #e4e4e4 !important;
    color: #656565 !important;
    cursor: not-allowed;
    border-color: #e4e4e4 !important;
}

.company_inactive{
    border-radius: 10px;
    background-color: rgba(253, 96, 80, .5);
    width: fit-content;
    padding: 10px;
}

.clear_free_access_button{
    padding: 10px 25px;
    width: auto;
    min-width: 180px;
    height: auto;
    background-color: #fb583b;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

.forgot-password a {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: right;
    color: #000000;
    transition: all .4s ease-in-out;
}

.forgot-password a:hover {
    text-decoration: underline;
    transition: all .4s ease-in-out;
}

.btn-01 a {
    margin: 0;
    padding: 10px 25px;
    width: auto;
    min-width: 180px;
    height: auto;
    background-color: #01615F;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

.btn-01 a:hover {
    background-color: #FF5764 !important;
    transition: all .4s ease-in-out;
}

.btn-02 a {
    margin: 0 0 24px 0;
    padding: 10px 25px;
    width: auto;
    min-width: 180px;
    height: auto;
    background-color: #FBB03B;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

.btn-02 a:hover {
    background-color: #29ABE2 !important;
    transition: all .4s ease-in-out;
}

.btn-03 a {
    margin: 0;
    padding: 10px 25px;
    width: auto;
    min-width: 180px;
    height: auto;
    background-color: #29ABE2;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

.btn-03 a:hover {
    background-color: #FBB03B !important;
    transition: all .4s ease-in-out;
}

.actions__container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.action--edit {
    background-color: #FBB03B !important;
    color: #FFFFFF !important;
    padding: 12px;
    border-radius: 4px;
}

.action--show {
    background-color: #5a6ad7 !important;
    color: #FFFFFF !important;
    padding: 12px;
    border-radius: 4px;
}

.action--delete {
    background-color: #FD6050 !important;
    color: #FFFFFF !important;
    padding: 12px;
    border-radius: 4px;
}

.action--approve {
    background-color: #21dd50 !important;
    color: #FFFFFF !important;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.action--reject {
    background-color: #df3c47 !important;
    color: #FFFFFF !important;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
}

@media only screen and (max-width:1023px) {
    .login-section {
        height: auto;
        background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #ffffff 50%, #ffffff 100%);
        flex-wrap: wrap;
    }

    .login-section .form-panel {
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .login-section .image-panel {
        width: 100%;
        height: auto;
    }

    .login-section .image-panel img {
        max-width: 100%;
        height: auto;
    }

    .form-section {
        margin: 0 auto;
    }

    .form-section button[type="submit"] {
        width: auto;
        font-size: 16px;
    }

    .btn-01 a {
        width: auto;
        min-width: auto;
        font-size: 16px;
    }

    .btn-02 a {
        width: auto;
        min-width: auto;
        font-size: 16px;
    }

    .btn-03 a {
        width: auto;
        min-width: auto;
        font-size: 16px;
    }
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d-flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.ck-content{
    height: 320px;
    overflow: auto;
    resize: none;
}

.info-popups-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.info-popups-container .info-popup{
    z-index: 999999;
    background-color: #FF5764;
    padding: 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    color: #FFFFFF !important;
}