/*---------- Font Load ----------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@font-face {
    font-family: 'Avenir'; /* Buraya bir isim verin */
    src: url('../fonts/Avenir.otf'); /* .ttf dosyasının yolunu ekleyin */
}

@font-face {
    font-family: 'Lato-Regular'; /* Buraya bir isim verin */
    src: url('../fonts/Lato-Regular.ttf'); /* .ttf dosyasının yolunu ekleyin */
}

/*---------- Fancy Checkbox ----------*/

.fancy-checkbox {
    margin-right: 10px;
    margin-top: 20px;
}

.fancy-checkbox,
.fancy-checkbox label {
    font-weight: normal;
}

.fancy-checkbox input[type="checkbox"] {
    display: none;
}

.fancy-checkbox input[type="checkbox"]+span {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    font-size: 16px;
}

.fancy-checkbox input[type="checkbox"]+span:before {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    bottom: 1px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    content: "";
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.fancy-checkbox input[type="checkbox"]:checked+span:before {
    font-family: FontAwesome;
    content: '\f00c';
    font-size: 15px;
    color: #fff;
    border-color: var(--primary-color);
    text-align: center;
    line-height: 21px;
    background: var(--primary-color)
}

/*---------- 1. Global Area ----------*/

:root {
    --primary-color: #222222 !important;
    --primary-dark-color: #323a45 !important;
    --secondary-color: #ff373a !important;
    --grey-color: #dbdbdb !important;
    --dark-grey-color: #6d8a8c !important;
    --white-color: #ffffff !important;
    --border-color: #dee2e6 !important;

    --primary-font: 'Lato-Regular' !important;
    --secondary-font: 'Avenir' !important;
}



.no-resp {
    display: flex !important;
}

.only-resp {
    display: none !important;
}

.tb-item-no-resp {
    display: table-cell !important;
}

.tb-item-no-mobile {
    display: table-cell !important;
}

body {
    margin: 0;
    padding: 0;
    z-index: 1;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
    color: var(--body-color);
    font-family: var(--body-font);
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

body .container {
    max-width: 1310px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ul-li ul {
    margin: 0;
    padding: 0;
}

.ul-li ul li {
    list-style: none;
    display: inline-block;
}

.ul-li-block ul {
    margin: 0;
    padding: 0;
}

.ul-li-block ul li {
    display: block;
    list-style: none;
}

[data-background] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
}

a:hover,
a:focus {
    text-decoration: none;
}

button {
    cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
}

input[type="file"] {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0px !important;
    cursor: pointer;
    box-sizing: border-box;
}

input[type="file"]::file-selector-button {
    margin-right: 10px;
    padding: 0px 20px;
    height: 100%;
    cursor: pointer;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.form-element {
    min-height: 70px;
    margin-bottom: 10px;
    position: relative;
}

.form-element label {
    font-size: .7em;
    font-weight: 600;
}

.form-element label span {
    color: red;
    margin-left: 3px;
    font-size: 14px;
    position: relative;
    top: 2px;
}

.form-element input,
.form-element select {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-family: var(--primary-font);
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5px;
}

.form-element .select-multiple {
    height: fit-content;
    padding: 10px;
}

.form-element .select-multiple option {
    margin: 5px;
    padding: 5px;
}

.form-element input:focus,
.form-element textarea:focus,
.form-element select:focus {
    border: 1px solid var(--secondary-color);
}

.form-element button {
    border: 1px solid var(--grey-color);
    padding: 8px 25px;
    background: unset;
    font-family: var(--primary-font);
    font-size: 16px;
}

.form-element .eye {
    position: absolute;
    right: 10px;
    top: 32px;
    cursor: pointer;
}

.form-btn {
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 16px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: all .3s;
    margin-top: 20px;
}

a.form-btn {
    padding: 11px 16px;
}

a.form-btn.delete {
    background: red;
}

.form-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.error-text {
    font-family: 'Montserrat';
    font-size: 11px;
    color: red;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.textarea .error-text {
    bottom: -15px !important;
}

.modal-body .error-text {
    font-family: 'Montserrat';
    font-size: 11px;
    color: red;
    position: absolute;
    left: 0;
}

.modal-body .modal-link {
    color: var(--secondary-color);
    font-style: italic;
}

.modal-body .modal-buttons a {
    color: var(--white-color);
}

div.dataTables_wrapper div.dataTables_filter {
    float: right;
}

div.dataTables_wrapper div.dataTables_filter input {
    border: 1px solid var(--primary-dark-color);
}

.dt-buttons button {
    margin-right: 10px;
    border-radius: 4px !important;
    background: var(--primary-dark-color);
    border: 1px solid var(--primary-dark-color);
    color: var(--white-color);
    font-size: 16px;
}

.dt-buttons button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

table.dataTable {
    margin: 20px 0 !important;
    width: 100%;
}

table.dataTable th,
table.dataTable td {
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 12px;

}

table.dataTable th {
    background: var(--primary-dark-color);
    color: var(--white-color);
    font-weight: 700;
}

table.dataTable td p {
    margin: 0;
}

table.dataTable td img {
    width: 70px;
}

table.dataTable td ul li:before {
    content: '#';
    font-weight: bold;
    margin-right: 5px;
    color: var(--secondary-color);
}

table.dataTable td ul li span {
    font-weight: bold;
    color: var(--secondary-color);
}

table {
    width: 100% !important;
}

.active>.page-link,
.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.modal .modal-content {
    padding: 30px 10px;
    font-family: var(--primary-font)
}

.modal .modal-exc {
    text-align: center;
    font-size: 100px;
    line-height: 100px;
    color: var(--secondary-color);
    margin: 20px auto;
}

.modal .modal-suc {
    text-align: center;
    font-size: 100px;
    line-height: 100px;
    color: green;
    margin: 20px auto;
}

.modal .modal-body img {
    width: 60% !important;
    margin: 20px 20%;
}

.modal .modal-warning-text {
    font-size: 25px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: bold;
}

.modal .modal-success-text {
    font-size: 25px;
    color: green;
    text-align: center;
    font-weight: bold;
}

.modal .modal-text {
    font-size: 16px;
    color: #222;
    text-align: center;
}

.modal .modal-text .text-info {
    color: var(--primary-color) !important;
}

.modal .modal-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal .modal-buttons button {
    margin: 5px;
}

.modal .modal-buttons .delete {
    margin: 0;
    padding: 7px 25px;
    font-weight: normal;
}

table .opt {
    text-align: center;
}

table .opt a i {
    padding: 0 5px;
}

table .opt a:hover {
    transform: rotate(10deg);
}


/*---------- 2. Login Page ----------*/

.login-container {
    width: 100%;
    height: 100vh;
    background-image: url('../img/home-bg4.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    position: relative;
}

.login-container::after {
    content: '';
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.7);
}

.login-container .logo {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
    z-index: 1;
}

.login-container .logo img {
    width: 20%;
}

.login-container .login-form {
    width: 50%;
    background: var(--white-color);
    padding: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    z-index: 1;
    border-radius: 10px;
}

.login-container .login-form .form-element {
    min-height: 60px !important;
}

.login-container .login-form input:focus {
    box-shadow: 0 0 15px var(--secondary-color);
}

.login-container .login-form .form-element .eye {
    top: 10px;
}

.login-container .login-form button {
    border: none;
    padding: 8px 25px;
    background: var(--secondary-color);
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 16px;
    transition: all .3s;
    font-weight: 700;
    border-radius: 5px;
}

.login-container .login-form button:hover {
    background: var(--dark-grey-color);
}

.login-container a {
    position: relative;
    top: 10px;
    left: -10px;
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 16px;
    transition: all .3s;
}

.login-container a:hover {
    color: var(--primary-color);
}

/*---------- 3. Side Bar ----------*/

.side-bar {
    width: 280px;
    height: 100vh;
    position: fixed;
    overflow-y: scroll;
    box-shadow: inset -2px -2px 8px rgba(0, 0, 0, .1);
    padding: 0 20px;
    background: var(--white-color);
    font-family: var(--primary-font);
    z-index: 10;
    transition: all .3s;
}

.side-bar .user-area {
    margin: 20px 0;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.side-bar .user-area .user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: var(--primary-dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    overflow: hidden;
    border: 1px solid var(--dark-grey-color)
}

.side-bar .user-area img {
    width: 50px;
    height: 50px;
}

.side-bar .user-area h2 {
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    margin: 3px 0;
}

.side-bar .user-area button {
    background: none;
    border: none;
    color: var(--dark-color);
    padding: 0;
}

.side-bar .user-area button:focus {
    box-shadow: none;
    background: none;
    color: var(--dark-color);
}

.side-bar .user-area .dropdown-menu {
    background: var(--primary-dark-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    top: 5px !important;
    left: 15px !important;
    padding: 15px;
    min-width: 180px;
}

.side-bar .user-area .dropdown-menu a {
    color: var(--white-color);
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.side-bar .user-area .dropdown-menu a:hover,
.side-bar .user-area .dropdown-menu a:focus {
    background: none;
    color: var(--secondary-color);
}

.side-bar .user-area .dropdown-menu a i {
    margin-right: 10px;
    font-size: 16px;
}

.side-bar .user-area .dropdown-menu .dropdown-divider {
    border-top: 1px solid var(--white-color);
}

.side-bar .menu-area .menu-title {
    background: var(--primary-dark-color);
    border-radius: 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.side-bar .menu-area .menu-title h2 {
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700 !important;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

.side-bar .menu-area .menu-items ul .menu-item {
    width: 100%;
    min-height: 50px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--white-color);
    transition: all .2s;
    border-radius: 15px;
}

.side-bar .menu-area .menu-items ul .menu-item span {
    position: absolute;
    right: 10px;
    top: 14px;
    font-size: 16px;
    z-index: -1;
}

.side-bar.participants .menu-area .menu-items ul .menu-item span {
    position: absolute;
    right: 0px;
    top: 14px;
    font-size: 16px;
    z-index: -1;
}

.side-bar .menu-area .menu-items ul .menu-item.current,
.side-bar .menu-area .menu-items ul .menu-item.active {
    border: 1px solid var(--primary-dark-color);
    border-radius: 15px;
}

.side-bar .menu-area .menu-items ul .menu-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 13px 20px;
    font-weight: 600;
    font-size: 16px;
}

.side-bar .menu-area .menu-items ul .menu-item .part-error {
    background: red;
    font-size: 10px;
    width: 15px;
    height: 15px;
    border-radius: 10px;
    text-align: center;
    line-height: 15px;
    color: var(--white-color);
    font-weight: bold;
    position: absolute;
    right: 50px;
    top: 18px;
}

.side-bar .menu-area .menu-items ul .menu-item li .part-error {
    right: 10px;
    top:2px;
}

.side-bar .menu-area .menu-items ul .menu-item a i {
    width: 20px;
    text-align: center;
}

.side-bar .menu-area .menu-items ul li .sub-menu {
    padding: 50px 0 0 10px;
    height: 50px;
    overflow: hidden;
    transition: all .3s;
}

.side-bar .menu-area .menu-items .sub-menu .sub-menu-item {
    position: relative;
    width: 220px;
    height: 30px;
    margin-bottom: 10px;
}

.side-bar .menu-area .menu-items .sub-menu .sub-menu-item a {
    font-size: 14px;
    padding: 0 0 0 20px;
    line-height: 19px;
}


.side-bar .menu-area .menu-items ul li a i {
    margin-right: 15px;
}

/*---------- 4. Top Bar ----------*/

.top-bar {
    width: 100%;
    height: 70px;
    background: #fcfcfc;
    position: fixed;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px 0 315px;
    transition: all .5s;
    font-family: var(--primary-font);
}

.top-bar h2 {
    font-size: 20px;
}

.top-bar h2 span i {
    margin-right: 5px;
    cursor: pointer;
}

.top-bar h2 img {
    width: 70px;
}

.top-bar .top-right i {
    margin-right: 15px;
}

.top-bar .top-right input {
    border: none;
    font-size: 14px;
}

/*---------- 5. Admin Section ----------*/

.dashboard {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard .content {
    background: var(--secondary-color);
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dashboard .content img {
    width: 200px;
    margin-bottom: 30px;
}

.dashboard .content h3 {
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 20px;
}

.dashboard.participant {
    padding: 100px 0 75px 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dashboard.participant .status {
    border-bottom: 1px solid;
    padding: 20px;
}

.dashboard.participant .status .data {
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-family: var(--primary-font);
    font-weight: bold;
    width: 100%;
}

.dashboard.participant .status .data .dt-1 {
    font-weight: bold;
    margin-right: 10px;
}

.dashboard.participant .info {
    width: 100%;
    padding: 50px;
}

.dashboard.participant .info .data {
    margin-bottom: 20px;
}

.dashboard.participant .info .title {
     color: var(--secondary-color);
}

.dashboard.participant .info .text {
    font-size: 16px;
    font-weight: normal;
}

.dashboard.participant .info .data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 20px;
    font-family: var(--primary-font);
    font-weight: bold;
}

.admin-section {
    padding: 75px 35px 75px 315px;
    width: 100%;
    min-height: 100vh;
    transition: all .5s;
    background: #fcfcfc;
    font-family: var(--primary-font);
    position: relative;
}

.admin-section .alert {
    position: absolute;
    padding: 100px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    top: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    background: var(--primary-color);
    font-weight: 600;
    color: #fff;
}

.admin-section .alert:hover:after {
    opacity: 1;
}

.admin-section .alert:after {
    content: 'X';
    width: 30px;
    height: 30px;
    border-radius: 15px;
    text-align: center;
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 700;
    font-size: 20px;
    background: var(--secondary-color);
    color: var(--white-color);
    opacity: 0;
    transition: all .3s;
}

.admin-section .section-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.admin-section .breadcrumb ul li {
    display: inline-block;
    margin: 5px 5px 0 0;
    font-weight: 500;
    color: var(--s-color);
}

.admin-section .breadcrumb ul li.current {
    color: var(--primary-color)
}

.admin-section .breadcrumb ul li.has-link a {
    color: var(--secondary-color);
}

.admin-section .main-content {
    width: 100%;
    background: var(--white-color);
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5px;
    margin-top: 50px;
    padding: 0 0 30px;
}

.admin-section .main-content .edit-img img {
    width: 50%;
    margin-left: 25%;
}

.admin-section .main-content .edit-img .file {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.admin-section .main-content .edit-img .file i {
    font-size: 100px;
    margin: 0 0 30px;
}

.admin-section .main-content .edit-img .file p {
    font-weight: bold;
}

.admin-section .main-content .content .notes {
    margin-top: 30px;
}

.admin-section .main-content .content .notes p {
    font-weight: bold;
    color: var(--primary-color);
}

.admin-section .main-content .content .notes p a {
    color: red;
}

.admin-section .main-content .edit-img a,
.admin-section .main-content .content-videos a {
    margin-left: 50%;
    ;
    transform: translateX(-50%);
    margin-top: 20px;
    font-family: var(--primary-font);
    font-weight: 700;
}

.admin-section .main-content .content-videos .video {
    margin-bottom: 50px;
}

.admin-section .main-content .content-videos iframe {
    margin-left: 50%;
    ;
    transform: translateX(-50%);
}

.admin-section .main-content .edit-img a:focus,
.admin-section .main-content .content-videos a:focus {
    box-shadow: none;
    color: #fff;
}

.admin-section .main-content .content-photos .content {
    display: flex;
}

.admin-section .main-content .content-photos .content .photo {
    width: 30%;
    margin-right: 50px;
}

.admin-section .main-content .content-photos img {
    width: 100%;
}

.admin-section .main-content .content-title {
    padding: 20px;
}

.admin-section .main-content .content-title span {
    font-size: 30px;
}

.admin-section .main-content .content-title h2 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.admin-section .main-content .content-button {
    padding: 20px;
    width: fit-content;
}

.admin-section .main-content .content-button a {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 13px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    transition: all .3s;
    border-radius: 5px;
    background: var(--primary-dark-color)
}

.admin-section .main-content .content-button a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.admin-section .main-content .content-title p {
    font-size: 13px;
}

.admin-section .main-content .content {
    padding: 20px;
}

.admin-section .main-content .content h5 {
    color: var(--secondary-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.admin-section .main-content .content h5:first-child {
    margin: 0;
}

.admin-section .main-content .content .nav-tabs button {
    color: var(--primary-dark-color);
    font-size: 16px;
    font-weight: 600;
}

.admin-section .main-content .content .tab-content {
    padding: 30px 15px;
}

.admin-section .main-content .content .tab-content h5 {
    border-top: 1px solid var(--primary-color);
    padding: 20px;
    margin-top: 20px;
}

.admin-section .main-content .content .tab-content-section {
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 20px;
    margin-bottom: 20px;
}

.admin-section .main-content .content .inner-tab-row {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.admin-section .main-content .content .tab-title p {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.admin-section .main-content .content .tab-list ul {
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 20px;
    margin-bottom: 50px;
}

.admin-section .main-content .content .tab-list ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.admin-section .main-content .content .tab-list ul li p {
    margin: 0 10px 0;
    float: left;
}

.admin-section .main-content .content .tab-list ul li span {
    margin-right: 20px;
    font-weight: 600;
}

.admin-section .main-content .content .tab-list ul li a {
    color: var(--white-color);
    margin-right: 50px;
    font-weight: 600;
    padding: 5px 15px;
}

.admin-section .main-content .content .delete-section {
    color: var(--white-color);
    font-weight: 700;
}

.admin-section .main-content .content .sub-content {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5px;
    margin: 20px;
    padding: 30px;
}

.admin-section .payment-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 50px 0;
}

.admin-section .payment-details .data {
    display: flex;
}

.admin-section .payment-details .data .dt-1 {
    width: 300px;
    font-weight: bold;
}


.note-editor.note-airframe .note-editing-area .note-editable,
.note-editor.note-frame .note-editing-area .note-editable {
    padding: 30px !important;
    font-size: unset !important;
}

.data .dt {
    display: flex;
    flex-direction: row;
}

.data .dt .dt-1,
.data .dt .dt-2 {
    width: 200px;
}

.send-application-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.send-application-button a {
    background: var(--primary-dark-color);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid var(--primary-dark-color);
    border-radius: 10px;
    color: var(--white-color);
    transition: all .3s;
}

.send-application-button a:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.send-application-button p {
    background: var(--secondary-color);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    color: var(--white-color);
    transition: all .3s;
}

