/* ADMIN CSS */
.section {
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.section:first-child {
    border-bottom: none;
}

.section > div:first-child {
    padding-bottom: 20px;
}

.section h5 {
    border-bottom: 1px solid #f1f1f1;
}

.section button {
    padding: 2px 7px;
}

.section button.red:hover {
    background-color: #e70909 !important;
}

 .lecture {
    padding:12px;
    background-color: #ffffff;
    border-radius: 3px;
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center !important;
}

.lecture-box {
    padding: 10px 12px;
    border-radius: 5px;
    margin-bottom: 35px;
    background-color: #f0f0f0;
}

.lecture-box:last-child {
    margin-bottom: 0px;
}

h4, h6 {
    margin: 0;
}

.lecture .fa-trash {
    color: red;
}

.lecture .fa-trash:hover {
    transform: scale(1.03);
    color: #e70909 !important;
}

.add-lecture {
    color: #F5931E;
}

.add-lecture:hover {
    transform: scaleY(1.02);
}

#resourse-box {
    border: 1px solid #d5d5d5;
    background-color: #f1f1f1;
    border-radius: 3px;
    width: fit-content;
}

#resourse-box button {
    all: unset;
    cursor: pointer;
    padding: 10px 15px;
    font-weight: 500;
    border-right: 1px solid #d5d5d5;
    color: #000 !important;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: transparent;
}

#resourse-box button.active-video {
    color: #fff !important;
    background-color: #000;
}

#resourse-box button:not(.active-video):hover {
    transform: scale(1.01);
}

.resourse-avail input {
    cursor: pointer;
}

.upload {
    font-size: 14px;
    border: 2px solid #d5d5d5;
    border-radius: 5px;
}

.red {
    color: #a90303;
}

.red:hover {
    transform: scale(1.03);
}

#uplaod-box {
    cursor: pointer;
    border-radius: 3px;
    padding: 10px 20px;
    background-color: #f1f1f1;
}

#uplaod-box:hover {
    transform: scale(1.002);
}

#uplaod-box p {
    margin: 0;
}

.options {
    height: 50px;
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fcfcfc;
}

.options:hover {
    cursor: pointer;
    background-color: #f1f1f1;
}

.option-container .dropdown-item {
    font-size: 17px;
}

.option-container .dropdown-item:hover {
    cursor: pointer;
    color: #Fff;
    background-color: #000;
}

#search-box .fa-search {
    position: absolute;
    left: 15px;
}

#search-box input {
    font-size: 19px;
    padding-left: 40px;
    border: 2px solid #000;
}

#members-table {
    font-size: 14px;
}

#members-table tr:nth-child(even) {
    background-color: #f1f1f1;
}

.progress-table th, td {
    padding-left: 0 !important;
}

.progress-table tr {
    padding-block: 10px;
    border-bottom: 1px solid #d5d5d5;
}

#progress > div {
    margin-bottom: 45px;
}

#progress > div:last-child {
    margin-bottom: 0;
}

#progress div.contain {
    transition: all 0.5s ease-in-out;
}

.box__dragndrop,
.box__uploading,
.box__success,
.box__error {
  display: none;
}

.filters .btn.active {
    background-color: #000 !important;
}



.drop-container {
    background-color: #f1f1f1;
    width: 100%;
    min-width: 27.5em;
    padding: 3.12em 1.87em;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.5em;
}

input#upload-button {
    display: none;
}


.drag-area{
    border: 2px dashed #F5931E;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.drag-area-container {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.drag-area.active {
	border: 2px solid #000;
}

.drag-area .icon {
	font-size: 100px;
	color: #000;
}

.drag-area header {
	font-size: 30px;
	font-weight: 500;
	color: #000;
}

.drag-area span{
	font-size: 25px;
	font-weight: 500;
	color: #000;
	margin: 10px 0 15px 0;
}

.drag-area button{
	padding: 10px 25px;
	font-size: 20px;
	font-weight: 500;
	border: none;
	outline: none;
	background: #F5931E;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.5s;
}

.drag-area button:hover{
	background: rgb(228, 220, 220);
}

.drag-area img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.loader {
	margin: auto;
	border: 20px solid #EAF0F6;
	border-radius: 50%;
	border-top: 20px solid #FF7A59;
	width: 200px;
	height: 200px;
	display: none;
	animation: spinner 4s linear infinite;
}

@keyframes spinner {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@-webkit-keyframes spinner {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loader.success,
.loader.error {
    justify-content: center;
    align-items: center;
    color: #02a702;
    border-radius: 50%;
    width: 200px;
    animation: none;
	height: 200px;
    background-color: #02a702;
	border: 20px solid #02a702;
	border-top: 20px solid #02a702;
}

.loader.error {
    color: #a90303;
    background-color: #a90303;
	border: 20px solid #a90303;
	border-top: 20px solid #a90303;
}

.success-area,
.error-area {
    display: none;
    color: #fff;
}


/* Form */
#form-background {
    height: 100%;
    width: 100%;
    padding: 50px 0;
    background-color: #F5931E;
}

.signinForm,
.addForm {
  width: 500px;
  margin: auto;
}

.signinForm .form-group {
  position: relative;
  margin: 25px 0;
}

.signinForm label {
  font-weight: 600;
  position: absolute;
  transform: translateY(50%);
  left: 20px;
  transition: all .3s ease;
}

.addForm label {
  font-weight: 600;
  font-weight: 500;
}

.move-up {
  margin-top: -18px;
  color: #000;
  padding: 0 5px;
  background-color: #fff;
  font-size: .8rem;
  font-weight: 600;
}

select {
    width: 100% !important;
    z-index: 99 !important;
    color: #000 !important;
    background-color: #fff !important;
}

button.btn-default {
    background: transparent !important;
}

.signinForm input,
.signinForm select,
.addForm input,
.addForm select {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  font-size: 16px;
  border-radius: 3px;
  border: 2px solid #000;
}

.addForm textarea {
  width: 100%;
  padding: 20px;
}

.addForm input[type=file] {
  border: 1px solid rgb(90, 90, 90);
  padding-top: 15px;
}

.signinForm input:focus,
.signinForm select:focus,
.addForm input:focus,
.addForm select:focus,
.addForm textarea:focus {
  /* border: 1px solid #000; */
  outline: none;
}

.signinForm button,
.addForm button {
  width: 100%;
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 3px;
  font-size: 1.2rem;
  background-color: #000;
}

.signinForm button:hover,
.addForm button:hover {
    transition: all .3s ease-in-out;
    transform: scale(1.01);
}



/* MODAL */
#modal-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    display: none;
    height: 220%;
    width: inherit;
    background-color: rgba(0,0,0,0.5);
}

#modal {
    position: absolute;
    left: 10%;
    right: 0;
    top: 9%;
    margin: auto;
    width: 600px;
    z-index: 15;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

#show {
    display: none;
}

#starred_headline {
    display: none;
}

#modal-header {
    color: #FFFEFE;
    height: 60px;
    background-color: #F5931E;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#close {
    all: unset;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #FFFEFE;
}

#close i {
    font-size: 35px;
}

#close:hover {
    color: #d5d5d5;
    border: 3px solid #222222;
}

#modal-body {
    color: #080808;
    background-color: #FFFEFE;
}

#modal-footer {
    color: #FFFEFE;
    height: 60px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: #F5931E;
}

#modal-content-logout,
#modal-content-delete,
#modal-content-starred-messages,
#none {
    display: none;
}


.mp-post {
    margin-bottom: 35px;
    padding: 8px;
    border: 1px solid #b8c1cd;
}

.mp-img {
    width: 100%;
    height: inherit;
    max-height: 100px;
}

a.edit-links {
    cursor: pointer;
    height: unset;
    padding: 7px 10px !important;
    max-height: 45px !important;
    color: #ffffff;
    border-radius: 3px;
    background-color: blue;
}

a.edit-links:hover {
    background-color: #007bff;
}

a.delete-links {
    cursor: pointer;
    padding: 7px 10px;
    color: #ffffff;
    max-height: 45px !important;
    border-radius: 3px;
    background-color: red;
    padding: 7px 10px !important;
}

a.delete-links:hover {
    background-color: #dc3545;
}

.lecture-box .fa-pen, 
.lecture-box .fa-check,
.lecture-box .fa-times {
    font-size: 19px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
}

.lecture-box .fa-pen:hover, 
.lecture-box .fa-check:hover,
.lecture-box .fa-times:hover {
    background-color: #d5d5d5;
}

.lecture-box .fa-check,
.lecture-box .fa-times {
    font-size: 25px;
    border: 1px solid #d5d5d5;
}

.lecture-box .fa-times {
    padding: 5px 10px;
}






/* NEW POST LINK */
.post-link {
    all: unset;
    border-radius: 3px;
    width: 100%;
    padding: 10px;
    color: #000;
    background-color: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #ffffff;
}

.copy-link {
    all: unset;
    color: #fff;
    font-size: 16px;
    width: 65px;
    cursor: pointer;
    padding: 9px 0;
    text-align: center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #097bed;
}

.copy-link:hover {
    transition: all 0.3s ease-in-out;
    background-color: #B80304;
}


.tooltip-text {
    position: absolute;
    display: none;
    color: #FFFEFE;
    width: 60px;
    text-align: center;
    padding: 1px 5px;
    border-radius: 5px;
    z-index: 5;
    font-size: 12px;
    bottom: 125%;
    right: 12%;
    background-color: #000;
    border: 1px solid #FFFEFE;
}

.tooltip-text:after {
    content: "";
    position: absolute;
    top: 75%;
    left: 41%;
    z-index: -1;
    border-width: 10px;
    border-style: solid;
    border-color: #080808 transparent transparent transparent;
}


.copy-tooltip {
    top: -29px;
    position: relative;
    display: inline-block;
}

.single-link-container .copy-tooltip {
    right: -92%;
    top: -78px;
}

.single-link-container .tooltip-text {
    bottom: 325%;
}

header.ttr-header{
    background: unset;
    background-color: #000 !important;
}

/* MANAGE POST LINK */
div.link-container {
    height: 40px;
    width: 100%;
    margin-top: 10px;
}

.link-container input {
    all: unset;
    width: 100%; 
    color: #f1f1f1;
    padding: 10px;
    margin: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: #080808;
}

.copy-post-link {
    all: unset;
    width: 84px;
    height: 43.3px;
    color: #fff;
    cursor: pointer;
    margin-left: -5px;
    text-align: center;
    background-color: #097bed;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}


.copy-post-link:hover {
    background-color: #B80304;
}

#search-container {
    position: relative;
}

#search-container input {
    font-size: 18px;
    padding: 10px 15px;
    padding-left: 40px;
    border: 2px solid #097bed;
    border-radius: 5px;
}

.news-information i {
    color: #097bed;
}

input.edit_title {
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    width: 250px;
    font-size: 16px;
    padding: 5px;
}

.white {
    color: #fff;
}

textarea {
    color: #000 !important;
}

.post-img {
    width: auto;
    height: 350px;
}






/* CONTAINERS */
.wrapper{
    width: 100%;
    height: 100%;
}

/* .container {
    padding: 2em;
} */

.contain {
    padding: 2.5em 4em;
}

.card {
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}



/* ICONS STARTS AND LINKS*/
.a, .link{
    text-decoration: none;
}

.a-black{
    color: #000;
    text-decoration: none;
}

.a-white{
    color: #fff;
    text-decoration: none;
}

.a-red{
    color: red;
    text-decoration: none;
}

a  i{
    text-decoration: none;
}

.i-white{
    color: #fff;
}

.i-black{
    color: #000;
}



/* LIST STARTS*/
ul li{
    list-style-type: none;
}

.li {
    list-style-type: disc;
}

a  li {
    list-style-type: none;
}
/* LIST ENDS */



/* BUTTON */
button[type="button"],
button[type="submit"] {
    cursor: pointer;
}

.btn-outline {
    background-color: transparent;
}


/* Backgrounds & colored buttons */
.bg-primary,
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.bg-secondary,
.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.bg-dark,
.btn-dark {
    background-color: var(--dark-color);
    color: #fff;
}

.bg-light,
.btn-light {
    background-color: var(--light-color);
    color: #333;
}

.bg-primary a,
.btn-primary a,
.bg-secondary a,
.btn-secondary a,
.bg-dark a,
.btn-dark a {
    color: #fff;
}

.btn.button-md {
    color: #fff !important;
}

.btn1 {
    background-color: #F5931E !important;
}

.btn2 {
    background-color: #000 !important;
}

.btn.button-md:hover,
.btn3:hover {
    background-color: #000 !important;
}

.btn.button-md.btn-bg:hover,
.btn3:hover {
    background-color: #fff !important;
    color: #F5931E !important;
}

.btn2:hover {
    background-color: #F5931E !important;
}

.cours-search .input-group-append .btn,
.btn {
	color: #fff !important;
}


/* Text color */
.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-dark {
    color: var(--dark-color);
}

.text-light {
    color: var(--light-color);
}

.ssm {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5em;
}

.sm {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
}

.xsm{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5em;
}

.xxsm{
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.5em;
}

.md {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5em;
}

.xmd{
    font-size: 2.7rem;
    font-weight: 950;
    line-height: 1.5em;
}

.lg {
    font-size: 3rem;
    font-weight: 950;
    line-height: 1.3em;
}

.mh-100vh {
    min-height: 100vh !important;
}

.xlg {
    font-size: 4rem;
    font-weight: bolder;
    line-height: 1.2em;
}

.xxlg{
    font-size: 5rem;
    font-weight: bolder;
    line-height: 1.1em;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-justify{
    text-align: justify;
}

.error,.errorrs {
    color: #B80304;
}

/* BOLD */
.b-1 {
    font-weight: 400;
}

.b-2 {
    font-weight: 500;
}

.b-3 {
    font-weight: 600;
}

.b-4 {
    font-weight: 700;
}

.b-5 {
    font-weight: 800;
}



/* Alerts */
/* .alert {
    background-color: var(--light-color);
    padding: 10px 20px;
    font-weight: bold;
    margin: 15px 0;
    text-align: center;
    align-items: center;
} */

.alert i {
    margin-right: 10px;
}

.alert-success {
    background-color: var(--success-color);
    color: #fff;
}

.alert-error {
    margin-top: 3px;
    font-weight: 600;
    color: #B80304;
}



/* DISPLAY TYPES  /  COLUMN FRAMEWORK */
.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline;
}

.tablet-appear,
.mobile-appear {
    display: none;
}

.flex {
    display: flex !important;
    height: auto;
    align-items: center;
}

.flex-center{
    display: flex;
    height: auto;
    justify-content: center;
}

.flex-start{
    display: flex;
    height: auto;
    justify-content: flex-start;
}

.flex-end{
    display: flex;
    height: auto;
    justify-content: flex-end;
}

.flex-around{
    display: flex;
    height: auto;
    justify-content: space-around;
}

.flex-between {
    display: flex;
    height: auto;
    align-items: top;
    justify-content: space-between;
}

.flex-evenly {
    display: flex;
    height: auto;
    align-items: top;
    justify-content: space-evenly;
}

.grid {
    display: grid;
    grid-gap: 45px 0;
}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
    grid-gap: 0 20px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-gap: 45px;
    grid-template-columns: repeat(3, 1fr);
}

#pagination {
    width: 100%;
}

.page {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFEFE;
    font-size: 19px;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 3px;
    cursor: pointer;
    background-color: #C6302C;
}

.page:hover {
    background-color: #9C2D2A;
}

#search-result .card {
    margin-bottom: 25px;
}

.relative,
a.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.user-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.big-user-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.underline {
    text-decoration: underline;
}

.pointer {
    cursor: pointer;
}

.transite {
    transition: all 0.3s ease-in-out;
}

.rounded {
    border-radius: 50% !important;
}

p.user-image {
    font-size: 35px;
    color: #ffffff;
    text-align: center;
    line-height: 60px;
    font-weight: 900;
    background-color: #FF1616;
}

#about p {
    color: #000000;
}

#comments {
    padding: 45px;
}

#menu {
    border-right: 2px solid #fff;
}

#menu:hover {
    cursor: pointer;
    background-color: #00000025;
}

#watch-video {
    position:relative;
    width: 100%;
    height: fit-content;
}

.video {
    transition: all 0.3s ease-in-out;
}

.playpause {
    background-color: #000;
    transition: all 0.3s ease-in-out;
    /* background-image:url("../images/logo-mobile.png"); */
    background-repeat:no-repeat;
    width:100%;
    height:100%;
    position:absolute;
    left:0%;
    right:0%;
    top:0%;
    bottom:0%;
    margin:auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size:contain;
    background-position: center;
}

.playpause i {
    width: 70px;
    height: 70px;
    display: flex;
    color: #fff;
    z-index: 99;
    transition: all 0.3s ease-in-out;
    background-color: #F5931E;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

#iframe * {
    width: 100%;
}

#type-input {
    resize: none;
}

.main {
    color: #F5931E;
}


/* MESSAGES */
.warning, .info, .success, .danger { 
    list-style-type: none;
    padding: 10px 15px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
}
/* .warning,*/ .info p, .success p, .danger p { 
    padding: 0;
    margin: 0;
}

.danger,
.danger-btn {
    color: #a90303;
    background-color: #ec9797;
}

.tablet-appear-flex {
    display: none;
}
.disabled:hover {
    cursor: not-allowed;
}
.success,
.success-btn,
.success-box {
    color: #02a702;
    background-color: #9bf99b;
}

.success-box {
    border-radius: 50%;
}

.success p {
    color: #02a702;
}
.warning,
.warning-btn {
    color: #929201;
    background-color: #f9f98b;
}
.info,
.info-btn {
    color: #0000a7;
    background-color: #097bed;
}

.grey {
    color: #f1f1f179;
}

.grid-3column {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 3em;
    align-items: center;
}

.center{
    text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
    align-self: center;
}


.ai-top {
    align-items: flex-start;
}

.ai-end {
    align-items: flex-end;
}

.wrap {
    flex-wrap: wrap;
}


                        
                        /* PERCENTAGE */
.w-100 {
    width: 100%;
}

.w-95 {
    width: 95%;
}

.w-90 {
    width: 90%;
}

.w-85 {
    width: 86%;
}

.w-80 {
    width: 80%;
}

.w-75 {
    width: 75%;
}

.w-70 {
    width: 70%;
}

.w-65 {
    width: 65%;
}

.w-60 {
    width: 60%;
}

.w-55 {
    width: 55%;
}

.w-50 {
    width: 50%;
}

.w-45 {
    width: 45%;
}

.w-47 {
    width: 47% !important;
}

.w-40 {
    width: 40%;
}

.w-35 {
    width: 35%;
}

.w-30 {
    width: 30%;
}

.w-27 {
    width: 27%;
}

.w-25 {
    width: 25%;
}

.w-20 {
    width: 20%;
}


.relative,
a.relative {
    position: relative;
}

  /* TERMS AND CONDITION PAGE */
#terms {
    background-color: #FFFEFE;
}

#terms p {
    margin: 5px 0;
    color: #080808;
    word-break: break-word;
}

.terms {
    margin: 45px 0;
    color: #080808;
}

#terms #headline {
    border-bottom: 1px solid #097bed;
    border-block-end-style:dashed;
}

#terms .list {
    margin-left: 20px;
}

#headline-container {
    color: red;
}


.match-wrapper {
    background-color: #f1f1f1;
}

.match {
    padding: 0;
    border-radius: 5px;
    background-color: #fff;
}

.left-suggestion {
    border-right: 1px solid #d5d5d5;
}

.right-suggestion {
    text-align: right;
}


                                    /* Margin */
/* MARGIN TOP */
.mt-1{
    margin-top: 0.5rem;
}

.mt-2{
    margin-top: 1rem;
}

.mt-3{
    margin-top: 2rem;
}

.mt-4{
    margin-top: 3rem;
}

.mt-5{
    margin-top: 4.5rem;
}

.mt-6{
    margin-top: 5em;
}

.mt-7{
    margin-top: 7em;
}

.mt-8{
    margin-top: 8.5rem;
}


/* MARGIN TOP & BOTTOM */
.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;;
}

.my-2 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-4 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-6 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.my-7 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.my-8 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}


/* MARGIN LEFT */
.ml-1{
    margin-left: 0.5rem;
}

.ml-2{
    margin-left: 1rem;
}

.ml-3{
    margin-left: 2rem;
}

.ml-4{
    margin-left: 3rem;
}

.ml-5{
    margin-left: 4.5rem;
}




/* MARGIN ALL SIDES */
.m-auto{
    margin: auto;
}

.m-0{
    margin: 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 1.5rem;
}

.m-3 {
    margin: 2rem;
}

.m-4 {
    margin: 2.5rem;
}

.m-5 {
    margin: 3rem;
}
.m-6 {
    margin: 4rem;
}

.m-7 {
    margin: 5rem;
}

.m-8 {
    margin: 6rem;
}



/* MARGIN BOTTOM */
.mb-1{
    margin-bottom: 0.5rem;
}

.mb-2{
    margin-bottom: 1rem;
}

.mb-3{
    margin-bottom: 2rem;
}

.mb-4{
    margin-bottom: 3rem;
}

.mb-5{
    margin-bottom: 4.5rem;
}

.mb-6{
    margin-bottom: 5.5rem;
}

.mb-7{
    margin-bottom: 6.5rem;
}

.mb-8{
    margin-bottom: 7rem;
}


/* MARGIN LEFT & RIGHT */
.mx-0{
    margin: 0 0;
}

.mx-auto{
    margin: 0 auto;
}

.mx-1 {
    margin: 0 1rem;
}

.mx-2 {
    margin: 0 1.5rem;
}

.mx-3 {
    margin: 0 2rem;
}

.mx-4 {
    margin: 0 2.5rem;
}

.mx-5 {
    margin: 0 3rem ;
}

.mx-6 {
    margin: 0 4rem;
}

.mx-7 {
    margin: 0 5.5rem;
}

.mx-8 {
    margin: 0 6.5rem;
}




/* MARGIN RIGHT */
.mr-1{
    margin-right: 0.5rem;
}

.mr-2{
    margin-right: 1rem;
}

.mr-3{
    margin-right: 2rem;
}

.mr-4{
    margin-right: 3rem;
}

.mr-5{
    margin-right: 4.5rem;
}
                                        /* MARGIN ENDS */




                                        /* Padding STARTS */
/* PADDING TOP */
.pt-1{
    padding-top: 0.5rem;
}

.pt-2{
    padding-top: 1rem;
}

.pt-3{
    padding-top: 2rem;
}

.pt-4{
    padding-top: 3rem;
}

.pt-5{
    padding-top: 4.5rem;
}

.pt-6{
    padding-top: 5em;
}

.pt-7{
    padding-top: 6em;
}

.pt-8{
    padding-top: 8.5rem;
}


/* PADDING TOP & BOTTOM */
.py-1 {
    padding: 1rem 0;
}

.py-2 {
    padding: 1.5rem 0;
}

.py-3 {
    padding: 2rem 0;
}

.py-4 {
    padding: 2.5rem 0;
}

.py-5 {
    padding: 3rem 0;
}

.py-6 {
    padding: 4.5rem 0;
}

.py-7 {
    padding: 5.5rem 0;
}

.py-8 {
    padding: 6.5rem 0;
}



/* PADDING LEFT */
.pl-1{
    padding-left: 0.5rem;
}

.pl-2{
    padding-left: 1rem;
}

.pl-3{
    padding-left: 2rem;
}

.pl-4{
    padding-left: 3rem;
}

.pl-5{
    padding-left: 4.5rem;
}


/* PADDING ALL SIDES */
.p-auto{
    padding: auto;
}

.p-0{
    padding: 0;
}

.ps-1{
    padding: 0.5rem;
}

.ps-2{
    padding: 0.3rem;
}

.p-1 {
    padding: 0.7rem 1rem;
}

.p-2 {
    padding: 1.5rem;
}

.p-3 {
    padding: 1.5rem 2rem;
}

.p-4 {
    padding: 1.85rem 2.5rem;
}

.p-5 {
    padding: 2.3rem 3rem;
}

.p-6 {
    padding: 4em;
}

.p-7 {
    padding: 5.5em;
}

.p-8 {
    padding: 7em;
}


/* PADDING BOTTOM */
.pb-1{
    padding-bottom: 0.5rem;
}

.pb-2{
    padding-bottom: 1rem;
}

.pb-3{
    padding-bottom: 2rem;
}

.pb-4{
    padding-bottom: 3rem;
}

.pb-5{
    padding-bottom: 4.5rem;
}

.pb-6{
    padding-bottom: 5em;
}

.pb-7{
    padding-bottom: 7em;
}

.pb-8{
    padding-bottom: 10em;
}


/* PADDING LEFT & RIGHT */
.px-1 {
    padding: 0 1rem;
}

.px-2 {
    padding: 0 1.5rem;
}

.px-3 {
    padding: 0 2rem;
}

.px-4 {
    padding: 0 2.5rem;
}

.px-5 {
    padding: 0 3rem;
}

.px-6 {
    padding: 0 4rem;
}

.px-7 {
    padding: 0 5.5rem;
}

.px-8 {
    padding: 0 6.5rem;
}


/* PADDING RIGHT */
.pr-1{
    padding-right: 0.5rem;
}

.pr-2{
    padding-right: 1rem;
}

.pr-3{
    padding-right: 2rem;
}

.pr-4{
    padding-right: 3rem;
}

.pr-5{
    padding-right: 4.5rem;
}
                                        /* PADDING ENDS */



/* height */
.h-inherit{
    height: inherit;
}

.h-auto{
    height: auto;
}

.h-screen {
    height: 625px;
}

.hss{
    height: 30px;
}

.hs{
    height: 50px;
}

.h-1{
    height: 100px !important;
}

.h-1half{
    height: 150px !important;
}

.h-2{
    height: 200px !important;
}

.h-2half{
    height: 250px;
}

.h-3{
    height: 300px;
}

.h-3half{
    height: 350px;
}

.h-4{
    height: 400px;
}

.h-4half{
    height: 450px;
}

.h-5{
    height: 500px;
}

.h-5half{
    height: 550px;
}

.h-6{
    height: 600px;
}

.h-6half{
    height: 650px;
}

.h-7{
    height: 700px;
}

.h-7half{
    height: 750px;
}

.h-8{
    height: 800px;
}

.h-8half{
    height: 850px;
}

.h-9{
    height: 900px;
}

.h-9half{
    height: 950px;
}

.h-10{
    height: 1000px;
}


/* width */
.wss{
    width: 30px;
}

.ws{
    width: 30px;
}

.w-1{
    width: 100px !important;
}


.w-1half{
    width: 150px !important;
}

.w-2{
    width: 200px !important;
}

.w-2half{
    width: 250px;
}

.w-3{
    width: 300px;
}

.w-3half{
    width: 350px;
}

.w-4{
    width: 400px;
}

.w-4half{
    width: 450px;
}

.w-5{
    width: 500px;
}

.w-5half{
    width: 550px;
}

.w-6{
    width: 600px;
}

.w-6half{
    width: 650px;
}

.w-7{
    width: 700px;
}

.w-7half{
    width: 750px;
}

.w-8{
    width: 800px;
}

.w-8half{
    width: 850px;
}

.w-9{
    width: 900px;
}

.w-9half{
    width: 950px;
}

.w-10{
    width: 1000px;
}

.w-100{
    width: 100%;
}

.w-fit {
    width: fit-content;
}

.w-inherit {
    width: inherit;
}

.w-97 {
    width: 96.5%;
}



/* LINE HEIGHT */
.l-1{
    line-height: 1em
}

.l-2{
    line-height: 1.2em
}

.l-3{
    line-height: 1.5em
}

.l-4{
    line-height: 1.8em
}

.l-5{
    line-height: 2em
}

.l-100 {
    line-height: 100%;
}


/* IMAGE CARD */
.img{
    width: calc(100%);
    max-width: inherit;
    object-fit: cover;
    height: 250px;
}

.s-img{
    width: calc(100%);
    max-width: inherit;
    height: 14%;
}

.img-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 15px 0;
    background-color: #fff;
}

.img-card-text{
    text-align: center;
    padding: 10px 20px;
}


/* HORIZONTAL CARD */
.horizontal-card {
    display: flex;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 18px 0;
    background-color: #fff;
}

/* .horizontal-card .img {
    height: auto;
    max-height: 300px;
    width: 100%;
} */


/* CARD ON HOVER */
.hover-card {
    padding:  15px 18px;
}

.hovered-card {
    padding: 21px;
}

.hover-card:hover,
.hovered-card {
    transform: scale(1.03);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



/* INPUT-TYPE RADIO */
.checkbox, .radio-container{
    margin: 15px 0;
}

.check, .radio{
    font-size: 1.5rem;
    margin: 0 20px 0 10px;
    line-height: 1.8em;
}


.input{
    border: 1px solid #6c757d;
    outline: 1px solid #6c757d;
    font-size: 25px;
    padding: 10px;
}

.input-file, select{
    height:40px;
}



option{
    border-radius: 10px;
    font-size: large;
    padding: 5px;
}

textarea{
    font-size: 20px;
    padding: 5px;
    outline: 0;
    max-width: 100%;
}



/* ADVERTS / PROMOTE */
.video {
    width: calc(100%);
    max-width: inherit;
    max-height: 25%;
}

.advert{
    margin: 2rem;
    width: calc(85%);
    height: calc(25%);
    border-radius: 1px solid rgb(39, 39, 126);
}

.advertx-img{
    width: 100%;
    height: auto;
    max-height: 50%;
    max-width: calc(100%);
}

.advert-card{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: auto;
    margin-top: 50px;
    width: 75%;
    background-color: #fff;
}

.advertx-button {
    border: 0;
    width: 185px;
    height: 55px;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    transition: all 0.5s;
    justify-content: center;
    background-color: #097bed;
    border-radius: 5px;
}

.adverty-button {
    width: 150px;
    height: 55px;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    transition: all 0.5s;
    justify-content: center;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #080808;
    background-color: #080808;
}

.adverty-button:hover {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.advertx-button:hover{
    background-color: #080808;
}



/* MOBILE  */
.mobile-appear {
    display: none;
}


div.ai-center {
    align-items: center !important;
}

.align-items {
    align-items: center !important;
}

#all-cohort-course-list div.link-container {
    margin-top: -10px !important;
    border-radius: 25px !important;
    margin-bottom: 20px !important;
}

#all-cohort-course-list .copy-post-link:hover {
    background-color: #F5931E;
}