#cool-notification, #cool-notification-new{ display: none; }
@font-face{
	font-family: nunito;
	src: url(../fonts/Nunito-Regular.ttf);
}
::-webkit-scrollbar { width: 0px; height: 0; background: transparent; }
::-webkit-scrollbar-thumb { background: #FF0000; }
::selection{ color: #000; background: #9e9e9e; }
::-moz-selection{ color: #000; background: #9e9e9e; }
body[night-mode] *::selection{ color: #fff; background: #333; }
body[night-mode] *::-moz-selection{ color: #fff; background: #333; }
*{ -ms-overflow-style: none; }
html, body{
	/* overflow: hidden; */
	position: fixed;
	top: 0; bottom: 0;
	left: 0; right: 0;
	overflow: auto;
	font-family: nunito;
	padding: 0px !important;
	margin: 0px !important;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
	background: #fff;
    color: #000;
	transition: background 0.4s ease;
	-webkit-transition: background 0.4s ease;
	-moz-transition: background 0.4s ease;
}

body[night-mode]{ background: #000; color: #fff; }

/************************************** custom modal **********************************************/
.modal{
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.modal-dialog{
	width: 100% !important;
	max-width: 500px;
	text-shadow: 0 0 1px #000;
	color: #000;
	margin-left: auto;
	margin-right: auto;
}
body[night-mode] .modal-dialog{ color: #fff; }
.modal-header, .modal-footer{ border: none !important; }
.modal-dialog .btn{
	background: transparent;
	color: #000;
	border: none;
	outline: none !important;
}
body[night-mode] .modal-dialog .btn{ color: #fff; }
body[night-mode] .modal-content{ background-color: #333 !important; }
.modal-content .btn{ font-weight: 600; }
.modal-dialog .btn-primary{ border-color: transparent !important; }
body:not([night-mode]) .modal-dialog .btn-primary{
	background-color: #333 !important;
	color: #fff;
}
body[night-mode] .modal-dialog .btn-primary{
	background-color: #fff !important;
	color: #000 !important;
}
.modal-footer{ text-align: center !important; }


/**************************************/
@keyframes cover-scale-anim{ 0%, 100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(0.8); opacity: 0.3; } }
@-webkit-keyframes cover-scale-anim{ 0%, 100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(0.8); opacity: 0.3; } }
@-moz-keyframes cover-scale-anim{ 0%, 100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(0.8); opacity: 0.3; } }

/******************************************************************************/
#header{ position: sticky; top: 0; z-index: 2; background: #fff; padding: 15px 20px; font-size: 1.3em; 
    border-bottom: 1px solid #d8d8d8;
}
body[night-mode] #header{ background: #000; border-bottom-color: #515151; }
#header > div{ display: table; width: 100%; }
#header > div > div{ display: table-cell; vertical-align: middle; }
#header > div > div:nth-child(2){ width: 100%; padding: 0 10px; }

/******************************************************************************/
p#header-logo{ 
    white-space: nowrap; margin: 0; position: relative; font-weight: 600; text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease;
}
p#header-logo:active{ transform: scale(0.9); -webkit-transform: scale(0.9); -moz-transform: scale(0.9); }
p#header-logo::after{ content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; }
p#header-logo > *{ display: inline-block; vertical-align: middle; }
p#header-logo > *:not(:first-child){ margin-left: 10px; }
p#header-logo img{ height: 25px; margin-right: 10px; }

/******************************************************************************/
#search-bar{ width: 100%; max-width: 400px; float: right; background: #fff; border: 1px solid #d8d8d8; 
    overflow: hidden; border-radius: 20px; }
body[night-mode] #search-bar{ border-color: #515151; }
#search-bar > div{ display: table; width: 100%; }
#search-bar > div > div{ display: table-cell; vertical-align: middle; }
#search-bar > div > div:nth-child(2){ width: 100%; }
#search-bar p{ margin: 0; text-align: center; width: 40px; color: #000; }
#search-bar input[type="text"]{ display: block; width: 100%; background: none; border: none; color: #000;
    outline: none; padding: 0; height: 40px;
}
#search-bar button{ display: block; background: none; border: none; color: #000; outline: none;
    width: 40px; height: 40px; padding: 0;
    transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease;
}
#search-bar button:active{ transform: scale(0.9); -webkit-transform: scale(0.9); -moz-transform: scale(0.9); }
#search-bar button[data-for="clear"]{ color: #ed1c24; }

/******************************************************************************/
#header-actions{ white-space: nowrap; }
#header-actions button{ display: inline-block; vertical-align: middle; width: 40px; height: 40px; background: none;
    border: none; color: #000; outline: none; padding: 0;
    transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease;
}
body[night-mode] #header-actions button{ color: #fff; }
#header-actions button:active{ transform: scale(0.9); -webkit-transform: scale(0.9); -moz-transform: scale(0.9); }
#header-actions button > *{ display: inline-block; vertical-align: middle; position: relative; }
body:not([night-mode]) #header-actions button[data-for="togglenight"],
body[night-mode] #header-actions button[data-for="toggleday"]{ display: none !important; }
#header-actions button b{ width: 30px; height: 30px; border-radius: 50%; overflow: hidden; }
#header-actions button b img{ display: block; position: absolute; top: 50%; left: 50%; max-width: 100%; max-height: 100%;
    transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%);
}



/******************************************************************************/
#footer{ position: fixed; bottom: 0; z-index: 1; background: #fff; left: 0; width: 100%; padding: 5px 15px; }
body[night-mode] #footer{ background: #000; }
#footer > div{}
#footer p{ margin: 0; text-align: center; color: #9e9e9e; }

/******************************************************************************/
#guide-info{ position: relative; padding: 15px; z-index: 1; }
#guide-info::before, #guide-info::after{
    content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1;
}
#guide-info::before{ z-index: -1; background: rgba(47, 170, 206, 0.2); }
#guide-info > div{ display: table; margin: 0 auto; }
#guide-info > div > div{ display: table-cell; vertical-align: middle; }
#guide-info p{ margin: 0; color: #000; text-align: right; font-size: 1.5em; font-weight: 600; letter-spacing: 1px; }
body[night-mode] #guide-info p{ color: #fff; }
#guide-info img{ display: block; height: 100px; margin-left: 20px; }


/******************************************************************************/
#guide-doc-list{ padding: 40px 20px; }
#guide-doc-list > div{ text-align: center; }
#guide-doc-list > p{ margin: 0; text-align: center; font-style: italic; font-size: 1.3em; color: #9e9e9e; }
#guide-doc-list > h6{ margin: 0 auto; width: max-content; position: relative; }
#guide-doc-list > h6::after{ content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; }
#guide-doc-list > h6 img{ display: block; width: 150px; }

/******************************************************************************/
.lay-item-doc-box{ display: inline-block; vertical-align: top; background: rgba(47, 170, 206, 0.2);
    border-radius: 10px; overflow: hidden; padding: 15px; margin: 10px; width: 250px; height: 300px;
    position: relative; cursor: pointer;
    transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease;
}
.lay-item-doc-box:active{ transform: scale(0.9); -webkit-transform: scale(0.9); -moz-transform: scale(0.9); }
.lay-item-doc-box::after{ content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; }
.lay-item-doc-box > div{ display: table; width: 100%; height: 100%; }
.lay-item-doc-box > div > div{ display: table-cell; vertical-align: middle; }
.lay-item-doc-box b{ display: block; width: 100px; height: 100px; line-height: 100px; text-align: center; overflow: hidden; 
    font-size: 100px; color: #2faace; margin: 0 auto;
}
.lay-item-doc-box h4{ margin: 10px 0 0 0; color: #000; text-align: center; white-space: normal; word-break: break-word;
    font-weight: 600; font-size: 2em;
}
body[night-mode] .lay-item-doc-box h4{ color: #fff; }

/******************************************************************************/
#documentation-area{ position: relative; display: block; overflow: hidden; width: 100%; height: 100%; font-size: 1.3em; }
#documentation-area > div{ display: table; width: 100%; height: 100%; }
#documentation-area > div > div{ display: table-cell; vertical-align: middle; position: relative; }
#documentation-area > div > div:last-child{ width: 100%; }
#documentation-area > div > div:first-child::before{ content: ""; display: block; width: 0;
	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
}
#documentation-area[state-expanded] > div > div:first-child::before{ width: 400px; }

/******************************************************************************/
#doc-structure{ position: absolute; top: 0; bottom: 0; right: 0; width: 400px; z-index: 2; }
#doc-structure > button{ display: block; position: absolute; top: 50%; left: 100%; background: #4caf50;
	border: none; outline: none; color: #fff; padding: 0; font-size: 2.2em; width: 35px; height: 100px;
	border-radius: 0 10px 10px 0; z-index: 1;
	transform: translateY(-50%); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
}
#doc-structure > button::before{
	content: ""; display: block; position: absolute; bottom: 100%; left: 0;
	border-top: 20px solid transparent; border-bottom: 20px solid #4caf50;
	border-left: 10px solid #4caf50; border-right: 17px solid transparent;
}
#doc-structure > button::after{
	content: ""; display: block; position: absolute; top: 100%; left: 0;
	border-top: 20px solid #4caf50; border-bottom: 20px solid transparent;
	border-left: 10px solid #4caf50; border-right: 17px solid transparent;
}
#doc-structure > button .fa{ display: block;
	transform-origin: center center; -webkit-transform-origin: center center;
	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
}
#documentation-area[state-expanded] #doc-structure > button .fa{
	transform: rotate(180deg); -webkit-transform: rotate(180deg);
}
#doc-structure > div{ display: table; width: 100%; height: 100%; border-right: 1px solid #d8d8d8; }
body[night-mode] #doc-structure > div{ border-right-color: #515151; }
#doc-structure > div > div{ display: table-row; }
#doc-structure > div > div:last-child{ height: 100%; }
#doc-structure > div > div > div{ display: table-cell; vertical-align: middle; position: relative; }

/******************************************************************************/
#doc-main-home{ border-bottom: 1px solid #d8d8d8; }
body[night-mode] #doc-main-home{ border-bottom-color: #515151; }
#doc-main-home > div{ display: table; width: 100%; }
#doc-main-home > div > div{ display: table-cell; vertical-align: middle; }
#doc-main-home > div > div:first-child{ width: 100%; }
#doc-main-home button{ display: block; background: none; border: none; color: #000; height: 40px; outline: none;
	padding: 0 10px; white-space: nowrap; font-weight: 600;
	transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease;
}
body[night-mode] #doc-main-home button{ color: #fff; }
#doc-main-home button:active{ transform: scale(0.9); -webkit-transform: scale(0.9); -moz-transform: scale(0.9); }
#doc-main-home button[data-for="home"]{ width: 100%; text-align: left; }
#doc-main-home button > *{ display: inline-block; vertical-align: middle; }
#doc-main-home button > *:not(:first-child){ margin-left: 0.4em; }

/******************************************************************************/
#doc-branches{ display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow: auto; padding: 5px 5px 50px 0; }

/******************************************************************************/
.lay-item-doc-branch{}

/******************************************************************************/
.lay-doc-branch-title{ max-height: 0; opacity: 0; visibility: hidden; position: relative; 
	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
}
.lay-item-doc-branch[state-expanded] > .lay-doc-branch-children > .lay-item-doc-branch > .lay-doc-branch-title,
#doc-branches > .lay-item-doc-branch > .lay-doc-branch-title{ max-height: 200px; opacity: 1; visibility: visible; }
.lay-doc-branch-title::before{
	content:""; display: block; position: absolute; right: 100%; margin-right: 10px; width: 2px; background: #000;
	transform: translateX(50%); -webkit-transform: translateX(50%);
	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
}
body[night-mode] .lay-doc-branch-title::before,
body[night-mode] .lay-doc-branch-title::after{ background: #fff !important; }
.lay-doc-branch-title::before{ top: 0; height: 17px; }
.lay-item-doc-branch:not(:last-child) > .lay-doc-branch-title::before{ top: 0; height: 100%; }
.lay-item-doc-branch[state-expanded] > .lay-doc-branch-children > .lay-item-doc-branch > .lay-doc-branch-title::after{
	content: ""; display: block; position: absolute; top: 17px; height: 2px; background: #000; width: 10px; right: 100%;
	transform: translateY(-50%); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
}

.lay-doc-branch-title p{ margin: 0; line-height: 24px; padding: 5px 0; cursor: pointer; position: relative; }
.lay-item-doc-branch:not([state-empty])[state-expanded] > .lay-doc-branch-title p::before{
	content: ""; display: block; position: absolute; top: 24px; left: 10px;
	bottom: 0; width: 2px; background: #000;
	transform: translateX(-50%); -webkit-transform: translateX(-50%);
}
body[night-mode] .lay-item-doc-branch > .lay-doc-branch-title p::before{ background: #fff !important; }
.lay-doc-branch-title p > span{ display: table; width: 100%; }
.lay-doc-branch-title p > span > span{ display: table-cell; vertical-align: top; }
.lay-doc-branch-title p > span > span:last-child{ width: 100%; }
.lay-doc-branch-title p b{ display: block; width: 20px; height: 24px; text-align: center;
	transform-origin: center; -webkit-transform-origin: center;
	transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease;
}
.lay-item-doc-branch:not([state-empty])[state-expanded] > .lay-doc-branch-title p b{
	transform: rotate(90deg); -webkit-transform: rotate(90deg);
}
.lay-item-doc-branch[state-empty] > .lay-doc-branch-title p b{ opacity: 0.15; }
.lay-doc-branch-title p strong{ display: block; white-space: normal; word-break: break-word; font-weight: normal; }


/******************************************************************************/
.lay-doc-branch-children{ padding-left: 20px; max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
}
.lay-item-doc-branch:not([state-empty])[state-expanded] > .lay-doc-branch-children{
	max-height: 5000px; opacity: 1; visibility: visible;
}


/******************************************************************************/
#doc-script-area{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; padding-left: 50px; }
#doc-script-area > div{ display: table; width: 100%; height: 100%; }
#doc-script-area > div > div{ display: table-row; }
#doc-script-area > div > div:nth-child(2){ height: 100%; }
#doc-script-area > div > div > div{ display: table-cell; vertical-align: top; position: relative; }

/******************************************************************************/
#doc-script-header-control{ padding: 5px 10px 5px 0; position: relative; z-index: 1; }
#doc-script-header-control > div{ display: table; width: 100%; height: 100%; }
#doc-script-header-control > div > div{ display: table-cell;  vertical-align: top; }
#doc-script-header-control > div > div:first-child{ width: 100%; }

#doc-script-header-control p{ margin: 0; white-space: nowrap; }
#doc-script-header-control p > *{ display: inline-block; vertical-align: middle; font-weight: normal !important; }
#doc-script-header-control p b{
	border: 1px solid #d8d8d8; border-radius: 5px; margin-left: 10px; padding: 0 5px; cursor: pointer; background: #fff;
	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
}
body[night-mode] #doc-script-header-control p b{ background: #000; }
#doc-script-header-control p b:hover{ padding-left: 0; border-bottom-left-radius: 0; }
body[night-mode] #doc-script-header-control p b{ border-color: #515151; }
#doc-script-header-control p b > *{ display: inline-block; vertical-align: middle; font-style: normal !important; }
#doc-script-header-control p b span{ height: 35px; }
#doc-script-header-control p b span u{
	display: block; text-decoration: none; line-height: 35px; padding: 0 5px 0 0; background: #fff;
	opacity: 0; max-height: 0; overflow: hidden; visibility: hidden;
	transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
}
body[night-mode] #doc-script-header-control p b span u{ background: #000; }
#doc-script-header-control p b span u[state-picked]{ font-weight: 600; }
#doc-script-header-control p b span u[state-picked],
#doc-script-header-control p b:hover span u{ max-height: 100px; opacity: 1; visibility: visible; }
#doc-script-header-control p b:hover span u{ padding-left: 5px; }
#doc-script-header-control p b:hover span u:first-child{ background: none !important; }
#doc-script-header-control p b:hover span u:not(:first-child){ border-left: 1px solid #d8d8d8; border-right: 1px solid #d8d8d8; }
body[night-mode] #doc-script-header-control p b:hover span u:not(:first-child){ border-left-color: #515151; border-right-color: #515151; }
#doc-script-header-control p b:hover span u:not(:first-child):last-child{ border-bottom: 1px solid #d8d8d8; border-radius: 0 0 5px 5px; }
body[night-mode] #doc-script-header-control p b:hover span u:not(:first-child):last-child{ border-bottom-color: #515151; }

#doc-script-header-control h2{ margin: 0; font-size: 1em; padding-right: 15px; }
#doc-script-header-control h2 > *{ display: inline; vertical-align: middle; margin-right: 8px; line-height: 35px; }
#doc-script-header-control h2 b{ cursor: pointer; }
#doc-script-header-control h2 > *:not(b){ color: #d8d8d8; }
body[night-mode] #doc-script-header-control h2 > *:not(b){ color: #515151; }

/******************************************************************************/
#doc-script-footer-control{ padding: 10px 0; }
#doc-script-footer-control > div{ display: table; width: 100%; }
#doc-script-footer-control > div > div{ display: table-cell; vertical-align: bottom; }
#doc-script-footer-control > div > div:nth-child(2){ width: 100%; }

#doc-script-footer-control button{ display: block; background: none; border: none; outline: none; height: 40px;
	padding: 0 10px; white-space: nowrap; max-width: 200px; overflow: hidden; position: relative;
	text-overflow: ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
	transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease;
}
#doc-script-footer-control button:active{ transform: scale(0.9); -webkit-transform: scale(0.9); -moz-transform: scale(0.9); }
#doc-script-footer-control button[disabled]{ cursor: not-allowed; visibility: hidden; }
#doc-script-footer-control button > *{ display: inline; vertical-align: middle; }
#doc-script-footer-control button[data-for="prev"]{ padding-left: 40px; }
#doc-script-footer-control button[data-for="next"]{ padding-right: 40px; }
#doc-script-footer-control button i{
	display: block; position: absolute; top: 50%; width: 20px; text-align: center;
	transform: translateY(-50%); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
}
#doc-script-footer-control button[data-for="prev"] i{ left: 0; margin-left: 10px; }
#doc-script-footer-control button[data-for="next"] i{ right: 0; margin-right: 10px; }

/******************************************************************************/
#doc-script-children{ }
#doc-script-children p{ margin: 0 0 5px 0; }
#doc-script-children ul{ padding-left: 1.2em; }
#doc-script-children ul li a{ text-decoration: none; font-weight: 600; }

/******************************************************************************/
#doc-script-void{ position: relative; display: none; height: 100%; }
#doc-script-void::after{ content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; }
#doc-script-void > div{ display: table; width: 100%; height: 100%; }
#doc-script-void > div > div{ display: table-cell; vertical-align: middle; }
#doc-script-void img{ display: block; width: 100%; max-width: 250px; margin: 0 auto; }
#doc-script-void p{ margin: 10px 0 0 0; color: #ed1c24; text-align: center; font-weight: 600; font-style: italic; font-size: 1.5em; }

/******************************************************************************/
#doc-script-main-body{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow: auto; }

/******************************************************************************/
#doc-script-contents{ margin-bottom: 20px; }
#doc-script-contents .CodeMirror{ background: transparent !important; border: none; }
body[night-mode] #doc-script-contents .CodeMirror{ color: #fff !important; }
#doc-script-contents .EasyMDEContainer .CodeMirror-scroll{ visibility: hidden; padding-bottom: 0; display: none; }

/******************************************************************************/
.script-content-preview{ margin-top: 30px; overflow: hidden !important; height: max-content !important; position: relative !important; }
.script-content-preview table{ margin-bottom: 1em; }
.script-content-preview table th, .script-content-preview table td{
	border-width: 1px; border-style: solid; border-color: #000; padding: 5px 10px;
}
body[night-mode] .script-content-preview table th, body[night-mode] .script-content-preview table td{ border-color: #fff; }
.script-content-preview img{ display: block; max-width: 500px; margin: 0 auto; }
.script-content-preview hr{ display: block; width: 100%; border-top: none; background: #4caf50; height: 2px;
	border-radius: 1px; overflow: hidden;
}
.script-content-preview blockquote{ position: relative; border-left: none; border: 1px solid #9e9e9e; border-radius: 5px; }
.script-content-preview blockquote::before{
	content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; width: 5px;
	background: #4caf50; border-radius: 5px 0 0 5px;
}
.script-content-preview pre{ background: #d8d8d8; color: #000; font-size: 0.9em; margin-bottom: 1em; }

/******************************************************************************/
#doc-script-search-results{ position: relative; display: block; overflow: hidden; width: 100%; height: 100%; 
	font-size: 1.3em; overflow: auto; padding: 0 15px; 
}
#doc-script-search-results > div{ height: max-content; padding: 10px 0 100px 0; width: max-content;
	max-width: 100%; margin: 0 auto; position: relative;
}

/******************************************************************************/
a.lay-item-script-search-result{ display: block; padding: 10px 0; cursor: pointer; text-decoration: none;
	color: inherit; position: relative;
	transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease;
}
a.lay-item-script-search-result::after{ content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 1; }
a.lay-item-script-search-result:active{ transform: scale(0.9); -webkit-transform: scale(0.9); -moz-transform: scale(0.9); }
a.lay-item-script-search-result > b{ display: block; font-weight: normal; }
a.lay-item-script-search-result em{ display: block; margin: 0; font-size: 0.8em; text-overflow: ellipsis; 
	-webkit-line-clamp: 2; -webkit-box-orient: vertical; font-style: normal; color: #9e9e9e;
}
a.lay-item-script-search-result em > *{ display: inline; margin-right: 0.4em; }
a.lay-item-script-search-result strong{ display: block; }
a.lay-item-script-search-result u{ display: block; text-decoration: none; font-style: italic; }


@media only screen and (max-width: 840px){
	#doc-structure, #documentation-area[state-expanded] > div > div:first-child::before{ width: 300px; }

	#doc-script-header-control > div, #doc-script-header-control > div > div{ display: block; width: 100%; }
	#doc-script-header-control p{ text-align: right; }
}
@media only screen and (max-width: 640px){
	#documentation-area > div, #documentation-area > div > div{ display: block; width: 100%; height: 100%; position: relative; }
	#documentation-area > div > div:first-child{ position: absolute; top: 0; right: 100%;
		transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease;
	}
	#documentation-area[state-expanded] > div > div:first-child{ right: 0; }
	#documentation-area[state-expanded] > div > div:first-child::before{ display: none !important; }
	#doc-structure{ width: 100%; background: #fff; }
	body[night-mode] #doc-structure{ background: #000; }
	#doc-branches{ padding-right: 40px; }
	#documentation-area[state-expanded] #doc-structure > button{ margin-left: -35px; }
	#documentation-area[state-expanded] #doc-structure > button{ border-radius: 10px 0 0 10px; }
	#documentation-area[state-expanded] #doc-structure > button::before,
	#documentation-area[state-expanded] #doc-structure > button::after{ left: 5px;
		border-left-color: transparent; border-left-width: 20px;
		border-right-color: #4caf50; border-right-width: 10px;
	}

	
}
@media only screen and (max-width: 580px){
    p#header-logo span{ display: none; }
}