/*----------------------------------------------------
CSS Table Of Content

-- Font Load
-- Fancy Checkbox
1. Global Area
2. Login Page
3. Side Bar
4. Top Bar
5. Admin Section

----------------------------------------------------*/

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

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


/*---------- 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: #222 !important;
    --primary-dark-color: #323a45 !important;
    --primary-light-color: #e9b25c30 !important;
    --secondary-color: rgba(234, 51, 35, 1) !important;
    --dark-color: #1a1a20 !important;
    --dark-grey-color: #6d8a8c !important;
    --grey-color: #f5f4f4 !important;
    --white-color: #ffffff !important;

    --primary-font: 'Roboto Mono' !important;
    --secondary-font: 'Montserrat' !important;
    --panel-font: 'Quicksand' !important;
}

.no-resp {display: flex !important;}
.no-resp-block {display: block !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;
}

.summernote {
  font-family: var(--primary-font);
}

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: 'Quicksand';
  font-size: 16px;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 5px;
}

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

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

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

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

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

.error-text {
  font-family: 'Montserrat';
  font-size: 11px;
  color: var(--secondary-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.modal-body .error-text {
    font-family: 'Montserrat';
    font-size: 11px;
    color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 0;
}

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;
}

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: 100px;
}

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: 'Quicksand'
}

.modal .modal-exc {
    width: 100px;
    height: 100px;
    text-align: center;
    border: 3px solid;
    font-size: 50px;
    line-height: 100px;
    border-radius: 50px;
    color: var(--secondary-color);
    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-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;
}

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

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/bg/login-bg.avif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
}

.login-container .logo {
  width: 50%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

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

.login-container .login-form {
  width: 50%;
  background: rgba(255,255,255,1);
  padding: 50px;
  box-shadow: 0 0 20px rgba(0,0,0,.3)
}

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

.login-container .login-form input {
  border: none;
}

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

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

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

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

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

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

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

.side-bar {
    width: 280px;
    height: 100vh;
    left: -280px;
    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(--panel-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;
}

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

.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;
}

.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;
}

.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(--panel-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: 20px;
  font-size: 10px;
  z-index: -1;
  top: 20px;
}

.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 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: 1;
  display: flex;
  align-items: center;
  justify-content:space-between;
  padding: 0 35px;
  transition: all .5s;
  font-family: 'Quicksand';
}

.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 ----------*/

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

.admin-section .error-text {
  bottom: -10px;
}

.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: 600;
  color: var(--primary-color);
}

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

.admin-section .breadcrumb ul li.has-link a {
  color: var(--primary-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.mobile img {
  width: 30%;
  margin-left: 35%;
}

.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(--panel-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 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;
}

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

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

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

.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-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;
}

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


.content-area {
    display: flex;
    border: 1px solid rgba(0, 0, 0, .2);
    width: 100%;
    margin: 15px 0;
    padding: 20px 20px;
}

.content-area h3 {
    margin: 0;
    font-weight: 600;
}

.content-area p {
    margin: 0;
}

.content-area .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.content-area.text-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-area.text-img .text {
    padding: 10px;
    border: 1px solid;
    height: 100px;
}

.content-area.text-img img {
    padding: 0 10px;
    width: 100%;
    height: 100px !important;
}

.content-area.text-img .text p,
.content-area.only-text .text p {
    margin-bottom: 10px;
}

.content-area.text-img .text h3,
.content-area.only-text .text h3{
    margin-bottom: 10px;
}

.content-area.text-img .text .txt,
.content-area.only-text .text .txt {
    height: 20px;
    background: var(--dark-grey-color);
}

.content-area.only-text .text .txt:nth-child(2) {
    width: 50%;
}

.content-area.only-text .text .txt {
    width: 70%;
}

.content-area.text-img img {
    height: 400px;
}

.content-area.text-img.text-50-img-50 img,
.content-area.text-img.img-50-text-50 img {
    width: 50%;
}

.content-area.text-img.text-50-img-50 .text,
.content-area.text-img.img-50-text-50 .text {
    width: 50%;
}

.content-area.text-img.text-40-img-60 img,
.content-area.text-img.img-60-text-40 img,
.content-area.text-img.img-40-text-60 .text,
.content-area.text-img.text-60-img-40 .text {
    width: 60%;
}

.content-area.text-img.text-40-img-60 .text,
.content-area.text-img.img-60-text-40 .text,
.content-area.text-img.text-60-img-40 img,
.content-area.text-img.img-40-text-60 img {
    width: 40%;
}

.content-area.img img {
    width: 100%;
    height: 100px;
    padding: 0 100px;
}

.content-area.vid {
    text-align: center;
}

.content-area.vid img {
    opacity: .8;
    width: 100%;
    height: 100px;
    padding: 0 200px;
}

.grid {
    border: 1px solid rgba(0, 0, 0, .2);
    border-left: none;
    border-right: none;
    padding: 30px;
    min-height: 100px;
}

.grid.multi-grid {
    border-right: 1px solid rgba(0, 0, 0, .2);;
}

.grid.multi-grid:last-child {
    border-right: none;
}

.created-content {
    padding: 10px 0;
    font-family: var(--primary-font);
    border: 1px solid rgba(0, 0, 0, .2);
    position: relative;
    z-index: 1;
}

.created-content p {
    margin: 5px;
}

.created-content .only-text.with-bg {
    width: 100% !important;
    position: relative;
    margin: 0 !important;
    padding: 0 10%;
}

.created-content .only-text.with-bg .bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

.created-content .only-text.with-bg .text {
    position: relative;
    z-index: 12;
    top: 50%;
    transform: translateY(-50%)
}

.created-content .only-text .text {
    width: 100%;
}

.created-content .text-img {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.created-content .text-img.text-50-img-50 .text,
.created-content .text-img.text-60-img-40 .text,
.created-content .text-img.text-40-img-60 .text {
    padding-right: 50px;
}

.created-content .text-img.img-50-text-50 .text,
.created-content .text-img.img-40-text-60 .text,
.created-content .text-img.img-60-text-40 .text {
    padding-left: 50px;
}

.created-content .text-img.text-50-img-50 img,
.created-content .text-img.img-50-text-50 img {
    max-width: 50%;
}

.created-content .text-img.text-50-img-50 .text,
.created-content .text-img.img-50-text-50 .text {
    width: 50%;
}

.created-content .text-img.text-40-img-60 img,
.created-content .text-img.img-60-text-40 img,
.created-content .text-img.img-40-text-60 .text,
.created-content .text-img.text-60-img-40 .text {
    width: 60%;
}

.created-content .text-img.text-40-img-60 .text,
.created-content .text-img.img-60-text-40 .text,
.created-content .text-img.text-60-img-40 img,
.created-content .text-img.img-40-text-60 img {
    width: 40%;
}

.created-content .buttons,
.section .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #dbdbdb;
    height: 50px;
}

.created-content .buttons a,
.section .buttons a {
    margin: 0 10px;
}

.created-content .buttons a:hover {
    background: transparent;
}

.created-content .only-text a,
.created-content .only-text p a,
.created-content .text-img a,
.created-content .text-img p a {
    padding: 10px 50px;
    font-size: 18px !important;
    background: var(--secondary-color) !important;
    border-radius: 30px;
    transition: all .3s;
    color: var(--white-color) !important;
    font-weight: bold !important;
}

.created-content a:hover {
    background: #000;
}

.created-content ul li {
    position: relative;
    margin-left: 25px;
    margin-bottom: 8px;
    line-height: 25px;
}

.created-content ul li:before {
    content:'';
    text-align: center;
    line-height: 20px;;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    left: -10px;
    top: 10px;
}

.created-content .vid iframe {
    width: 100%;
}

.created-content .img img,
.created-content .vid {
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.page-view .grid,
.page-view .created-content{
    border: none;
}

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

.section .sctn {
    width: 80%;
    margin: 0 auto;
}

.section .sctn.full-scr {
    width: 100%;
}

.section .content-title {
    padding: 0px;
    background: #dbdbdb;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

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

.created-content ol {
    counter-reset: list-counter;
    list-style: none;
    padding-left: 0;
}

.created-content ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 20px;
}

.created-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.custom-col {
    flex: 0 0 50%; /* Varsayılan olarak %50 genişlik */
  }

  @media (min-width: 768px) {
    .custom-col {
      flex: 0 0 25%; /* Orta ekranlarda %25 genişlik */
    }
  }

  @media (min-width: 992px) {
    .custom-col {
      flex: 0 0 20%; /* Büyük ekranlarda %20 genişlik */
    }
  }

.note-editor .note-editable {
    font-family: 'Roboto Mono';
}

/*---------- Tukey Map ----------*/


.svg-turkiye-haritasi {
    max-width: 1140px;
    margin: 100px auto 0;
    text-align: center;
    height: 500px;
}

.svg-turkiye-haritasi svg {
    width: 100%;
    height: auto;
}

.il-isimleri {
    position: absolute;
    z-index: 2;
}

.il-isimleri div {
    display: flex;
    flex-direction: column;
    background: #222;
    color: #fff;
    padding: 8px 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.il-isimleri div p {
  margin: 0;
}

.il-isimleri div span {
    width: 100x;
    font-weight: 700;
    text-transform: uppercase;
}

.il-isimleri div ul {
    margin-left: 20px;
}

.il-isimleri div ul li {
    font-size: 12px;
}

#svg-turkiye-haritasi path {
    cursor: pointer;
    fill: #cccccc;
}

#svg-turkiye-haritasi .has-data path:hover {
    fill: var(--primary-color);
}

#svg-turkiye-haritasi .has-data path {
    cursor: pointer;
    fill: var(--secondary-color);
}
