/**
 * @license Copyright (c) 2014-2022, CKSource Holding sp. z o.o. All rights reserved.
 * This file is licensed under the terms of the MIT License (see LICENSE.md).
 */

:root {
	--ck-sample-base-spacing: 2em;
	--ck-sample-color-white: #fff;
	--ck-sample-color-green: #279863;
	--ck-sample-color-blue: #1a9aef;
	--ck-sample-container-width: 1285px;
	--ck-sample-sidebar-width: 350px;
	--ck-sample-editor-min-height: 400px;
	--ck-sample-editor-z-index: 10;
}

/* --------- EDITOR STYLES  ---------------------------------------------------------------------------------------- */

.editor__editable,
/* Classic build. */
main .ck-editor[role='application'] .ck.ck-content,
/* Decoupled document build. */
.ck.editor__editable[role='textbox'],
.ck.ck-editor__editable[role='textbox'],
/* Inline & Balloon build. */
.ck.editor[role='textbox'] {
	width: 100%;
	background: #fff;
	font-size: 1em;
	line-height: 1.6em;
	min-height: var(--ck-sample-editor-min-height);
	padding: 1.5em 2em;
}

main .ck-editor[role='application'] {
	overflow: auto;
}

.ck.ck-editor__editable {
	background: #fff;
	border: 1px solid hsl(0, 0%, 70%);
	width: 100%;
}

/* Because of sidebar `position: relative`, Edge is overriding the outline of a focused editor. */
.ck.ck-editor__editable {
	position: relative;
	z-index: var(--ck-sample-editor-z-index);
}

.editor-container {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
	width: 100%;
	justify-content: center;
}

/* --------- DECOUPLED (DOCUMENT) BUILD. ---------------------------------------------*/
body[data-editor='DecoupledDocumentEditor'] .document-editor__toolbar {
	width: 100%;
}

body[data-editor='DecoupledDocumentEditor'] .collaboration-demo__editable,
body[data-editor='DecoupledDocumentEditor'] .row-editor .editor {
	/* A pixel is added for each of the border. */
	width: calc(21cm + 2px);
	min-height: calc(29.7cm + 2px);
	/* To avoid having extra scrolls inside the editor container. */
	height: fit-content;
	padding: 2cm 1.2cm;
	margin: 2.5rem;
	border: 1px hsl( 0, 0%, 82.7% ) solid;
	background-color: var(--ck-sample-color-white);
	box-shadow: 0 0 5px hsla( 0, 0%, 0%, .1 );
	box-sizing: border-box;
}

body[data-editor='DecoupledDocumentEditor'] .row-editor {
	display: flex;
	position: relative;
	justify-content: center;
	overflow-y: auto;
	background-color: #f2f2f2;
	border: 1px solid hsl(0, 0%, 77%);
	/* Limit the max-height of the editor to avoid scrolling from bottom to top to see the toolbar. */
	max-height: 700px;
}

body[data-editor='DecoupledDocumentEditor'] .sidebar {
	background: transparent;
	border: 0;
	box-shadow: none;
}

/* --------- COMMENTS & TRACK CHANGES FEATURE ---------------------------------------------------------------------- */
.sidebar {
	padding: 0 15px;
	position: relative;
	min-width: var(--ck-sample-sidebar-width);
	max-width: var(--ck-sample-sidebar-width);
	font-size: 20px;
	border: 1px solid hsl(0, 0%, 77%);
	background: hsl(0, 0%, 98%);
	border-left: 0;
	overflow: hidden;
	min-height: 100%;
	flex-grow: 1;
}

/* Do not inherit styles related to the editable editor content. See line 25.*/
.sidebar .ck-content[role='textbox'],
.ck.ck-annotation-wrapper .ck-content[role='textbox'] {
	min-height: unset;
	width: unset;
	padding: 0;
	background: transparent;
}

.sidebar.narrow {
	min-width: 60px;
	flex-grow: 0;
}

.sidebar.hidden {
	display: none !important;
}

#sidebar-display-toggle {
	position: absolute;
	z-index: 1;
	width: 30px;
	height: 30px;
	text-align: center;
	left: 15px;
	top: 30px;
	border: 0;
	padding: 0;
	color: hsl( 0, 0%, 50% );
	transition: 250ms ease color;
	background-color: transparent;
}

#sidebar-display-toggle:hover {
	color: hsl( 0, 0%, 30% );
	cursor: pointer;
}

#sidebar-display-toggle:focus,
#sidebar-display-toggle:active {
	outline: none;
	border: 1px solid #a9d29d;
}

#sidebar-display-toggle svg {
	fill: currentColor;
}

/* --------- COLLABORATION FEATURES (USERS) ------------------------------------------------------------------------ */
.row-presence {
	width: 100%;
	border: 1px solid hsl(0, 0%, 77%);
	border-bottom: 0;
	background: hsl(0, 0%, 98%);
	padding: var(--ck-spacing-small);

	/* Make `border-bottom` as `box-shadow` to not overlap with the editor border. */
	box-shadow: 0 1px 0 0 hsl(0, 0%, 77%);

	/* Make `z-index` bigger than `.editor` to properly display tooltips. */
	z-index: 20;
}

.ck.ck-presence-list {
    flex: 1;
    padding: 1.25rem .75rem;
}

.presence .ck.ck-presence-list__counter {
	order: 2;
	margin-left: var(--ck-spacing-large)
}

/* --------- REAL TIME COLLABORATION FEATURES (SHARE TOPBAR CONTAINER) --------------------------------------------- */
.collaboration-demo__row {
	display: flex;
	position: relative;
	justify-content: center;
	overflow-y: auto;
	background-color: #f2f2f2;
	border: 1px solid hsl(0, 0%, 77%);
}

body[data-editor='InlineEditor'] .collaboration-demo__row {
	border: 0;
}

.collaboration-demo__container {
	max-width: var(--ck-sample-container-width);
	margin: 0 auto;
	padding: 1.25rem;
}

.presence, .collaboration-demo__row {
	transition: .2s opacity;
}

.collaboration-demo__topbar {
	background: #fff;
	border: 1px solid var(--ck-color-toolbar-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
}

.collaboration-demo__topbar .btn {
	margin-right: 1em;
	outline-offset: 2px;
	outline-width: 2px;
	background-color: var( --ck-sample-color-blue );
}

.collaboration-demo__topbar .btn:focus,
.collaboration-demo__topbar .btn:hover {
	border-color: var( --ck-sample-color-blue );
}

.collaboration-demo__share {
	display: flex;
	align-items: center;
	padding: 1.25rem .75rem
}

.collaboration-demo__share-description p {
	margin: 0;
	font-weight: bold;
	font-size: 0.9em;
}

.collaboration-demo__share input {
	height: auto;
	font-size: 0.9em;
	min-width: 220px;
	margin: 0 10px;
	border-radius: 4px;
	border: 1px solid var(--ck-color-toolbar-border)
}

.collaboration-demo__share button,
.collaboration-demo__share input {
	height: 40px;
	padding: 5px 10px;
}

.collaboration-demo__share button {
	position: relative;
}

.collaboration-demo__share button:focus {
	outline: none;
}

.collaboration-demo__share button[data-tooltip]::before,
.collaboration-demo__share button[data-tooltip]::after {
	position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all .15s cubic-bezier(.5,1,.25,1);
	z-index: 1;
}

.collaboration-demo__share button[data-tooltip]::before {
	content: attr(data-tooltip);
    padding: 5px 15px;
    border-radius: 3px;
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 11px;
	top: 100%;
    left: 50%;
    margin-top: 5px;
    transform: translateX(-50%);
}

.collaboration-demo__share button[data-tooltip]::after {
    content: '';
	border: 5px solid transparent;
    width: 0;
    font-size: 0;
    line-height: 0;
	top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 5px solid #111;
	border-top: none;
}

.collaboration-demo__share button[data-tooltip]:hover:before,
.collaboration-demo__share button[data-tooltip]:hover:after {
	visibility: visible;
    opacity: 1;
}

.collaboration-demo--ready {
	overflow: visible;
	height: auto;
}

.collaboration-demo--ready .presence,
.collaboration-demo--ready .collaboration-demo__row {
	opacity: 1;
}

/* --------- PAGINATION FEATURE ------------------------------------------------------------------------------------ */

/* Pagination view line must be stacked at least at the same level as the editor,
   otherwise it will be hidden underneath. */
.ck.ck-pagination-view-line {
	z-index: var(--ck-sample-editor-z-index);
}

/* --------- REVISION HISTORY FEATURE ------------------------------------------------------------------------------ */

.revision-viewer-container {
    display: none;
}

.revision-viewer-sidebar {
    position: relative;
    min-width: 310px;
    overflow: hidden;
    background: var(--ck-color-toolbar-background);
    border: 1px solid var(--ck-color-toolbar-border);
    margin-left: -1px;
}

/* A case when Pagination and Revision History features are enabled in the editor. */
/* Move the square with page number from the Pagination plugin to the left side, so that it does not cover the RH sidebar. */
body[data-revision-history='true'] .ck.ck-pagination-view-line::after {
	transform: translateX(-100%) !important;
	left: -1px !important;
	right: unset !important;
}



div#article-cr-body {position: relative;display: flex;flex-direction: column;width: 100%;padding: 30px;}

div#article-cr-body h1 {text-align: center;font-size: 3em;text-transform: uppercase;color: #00b4d8;margin-bottom: 1.5em;}

.sltouk-input-field {position: relative;display: flex;flex-direction: column;width: 100%;padding-right: 30px;margin-bottom: 30px;}

.sltouk-input-field label {font-size: 15px;font-weight: 800;color: #03045e;margin-bottom: 10px;}

.sltouk-input {
    border-radius: 0px;
    box-sizing: border-box;
    color: #9E9E9E;
    font-size: 15px;
    
    height: 45px !important;
    
    padding: 10px;
    border: 2px solid #00b4d8;}

div#upload-banner-content {position: relative;display: grid;width: 100%;border: 2px dashed #00b4d8;padding: 30px;min-height: 200px;align-items: center;justify-content: center;background-position: center;background-size: cover;grid-template-columns: 7fr 3fr;}

div#upload-banner-inner {position: relative;width: 90%;display: flex;flex-direction: column;align-items: center;justify-content: center;padding: 30px;border: 2px dashed #00b4d8;}

input#article-banner {opacity: 0;visibility: hidden;}

div#upload-banner-inner span {text-align: center;margin-bottom: 15px;font-size: 14px;font-weight: 700;color: #00b4d8;}

.article-outer {position: relative;display: flex;width: 80%;background: #f4efdf;flex-direction: column;cursor: pointer;margin: 5vh 0;overflow: hidden;transition: all .4s ease;box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);}
.article-img {position: relative;height: 200px;width: 100%;background-position: center;background-size: cover;overflow: hidden;}
.article-img:after {content: '';position: absolute;border-left: 0px solid transparent;
    border-right: 21.38vw solid transparent;
    border-bottom: 50px solid #f4efdf;bottom: 0;}

.article-content {position: relative;padding: 30px;top: -15px;}

span.date-sec {font-size: 13px;margin-bottom: 10px;position: relative;display: block;color: #00b4d8;}
div#article-container {position: relative;display: grid;grid-template-columns: 1fr 1fr 1fr;justify-items: center;}

.art-img-in {position: relative;display: flex;width: 100%;height: 100%;background-position: center;background-size: cover;transition: all .4s ease;}

.article-outer:hover .art-img-in {transform: scale(1.2);}

.art-btn {position: absolute;display: flex;align-items: center;justify-content: center;width: 100%;height: 100%;top: 0;left: 0;background: rgb(0 180 216 / 50%);opacity: 0;transition: all .4s ease;}

.article-outer:hover .art-btn {opacity: 1;}

.article-outer:hover .art-btn span {transform: translateY(0px);opacity: 1;}

.art-btn span:hover {background: #fff;color: #00b4d8;}

input#vacancy-banner {opacity: 0;}

.button-sec button {margin-right: 20px;}

div#upload-inner-content {display: flex;flex-direction: column;align-items: center;justify-content: center;padding-top: 20px;}

div#upload-inner-content span {font-size: 13px;font-weight: 800;margin-bottom: 20px;}

img#banner-imgx {position: relative;width: 100%;}

section#sign-in-content:before {content: '';
    position: absolute;
    
    border-left: 0px solid transparent;
    border-right: 75vw solid transparent;
    border-top: 45vh solid #00b4d8;
    left: 0;
    top: 0;}

#sign-in-content:after {content: '';
    position: absolute;
    border-right: 0px solid transparent;
    border-left: 100vw solid transparent;
    border-bottom: 60vh solid #03045e;
    right: 0;
    bottom: 0;z-index: 1;}

textarea {border: 2px solid #00b4d8;padding: 10px;font-family: 'Quicksands';}

textarea:active, textarea:focus, textarea:focus-visible {border-color: #03045e;}
.container-serv {
    background-color: #f9f9f9;
    color: black;
    /* border-radius: 20px; */
    box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
    margin: 20px 0;
}
.question {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
z-index: 1;overflow: hidden;background: #f4efdf;}

.question.active {}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 20px;
    line-height: 1.5rem;
}

.question.active + .answercont {
}

.faq-btn {position: absolute;right: 5%;display: flex;top: 35%;}

.slider-sec {width: 100%;margin: 30px 0;display: grid;grid-template-columns: calc(100% - 750px) 750px;position: relative;}

.sl-upload-sec {display: flex;flex-direction: column;align-items: center;justify-content: center;}

.sl-preview-sec {background: #00b4d8;height: calc(750px / 3);background-position: center;background-size: cover;overflow: hidden;position: relative;}

.image-upload {height: 0;visibility: hidden;}


div.home-text {position: relative;display: flex;flex-direction: column;height: 100%;width: 31%;justify-content: center;align-items: center;background: rgb(3 4 94 / 60%);}

div.home-text:after {content: '';position: absolute;border-left: 0px solid transparent;
    border-right: 134px solid transparent;
    border-top: 70vh solid rgb(3 4 94 / 60%);left: 100%;}

div.inner-home-data {display: flex;flex-direction: column;color: #fff;align-items: flex-start;padding: 0 30px;position: relative;}

span.title-one {background: #0077b6;font-size: 1em;padding: 2px 5px;font-weight: 400;}

span.title-two {font-size: 0.95em;line-height: 1.8;}
span.title-three {
    font-size: 2em;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.btn--prime {font-size: 11px;background: #00b4d8;padding: 5px;text-transform: uppercase;margin: 10px 0;}

.slider-act {opacity: 1;height: auto;width: auto;left: auto;right: 0;background: transparent;top: -100%;}

.slider-act span {opacity: 1;transition: all .4s ease;}

.slider-act.active {top: 0;}

.sl-upload-sec label {margin-bottom: 10px;}

.sl-upload-sec span {font-size: 12px;font-weight: 700;color: #444;}

.sl-upload-sec h3 {font-size: 25px;color: #00b4d8;margin-bottom: 20px;}

.answer ul {margin-left: 30px;}

span.inner-label {
    position: absolute;
    background: red;
    top: 0;
    right: 20px;
    z-index: 2;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

span.inner-label.draft {
    background: goldenrod;
}

span.inner-label.publish {
    background: darkgreen;
}

div#video-outer-container {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.video-outer {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
}

img.channel-img {
    width: 120px;
    position: relative;
}

.vid-head-cont {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.body-area {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: calc(100% - 120px);
    overflow-y: scroll;
}

.vid-back {
    width: 100%;
    position: relative;
}

.video-outer:first-child {
    border-right: 2px solid;
}

div#container-inner-body.cib-fix {
    overflow: hidden;
    min-height: 100%;
}

.tags-input-wrapper{
    background: transparent;
    padding: 1rem;
    border-radius: 4px;
    max-width: 100%;
    border: 2px solid #00b4d8;
}
.tags-input-wrapper input{
    border: none;
    background: transparent;
    outline: none;
    width: 140px;
    margin-left: 8px;
}
.tags-input-wrapper .tag{
    display: inline-block;
    background-color: #00b4d8;
    color: white;
    border-radius: 40px;
    padding: 0px 3px 0px 7px;
    margin-right: 5px;
    margin-bottom:5px;
    box-shadow: 0 5px 15px -2px rgb(3 4 94 / 30%);
}
.tags-input-wrapper .tag a {
    margin: 0 7px 3px;
    display: inline-block;
    cursor: pointer;
}

.video-sec {
    position: relative;
    width: calc(50% - 2rem);
    margin: 1rem;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

span.video-delete {
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
}