html,
body {
    overflow-x: hidden;
    width: 100%;
}

@font-face {
    font-family: roboto;
    src: url(https://blogeukono.com/Roboto-font/Roboto-Regular.ttf);
}

@font-face {
    font-family: custom;
    src: url("../fonts/karla/Karla-Regular.ttf");
    font-weight: normal;
}

@font-face {
    font-family: custom;
    src: url("../fonts/karla/Karla-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: custom;
    src: url("../fonts/karla/Karla-Regular.ttf");
    font-weight: lighter;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'custom', sans-serif;
    font-size: 12pt;
    color: rgba(0, 0, 0, .6);
}

* {
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
    color: #404040;
}

p,
ol,
ul {
    margin-top: -6px;
}

ol,
ul {
    padding: 0;
    list-style: none;
}

p {
    line-height: 180%;
}

a {
    color: gray;
}

a:hover {
    text-decoration: none;
}

.container {
    margin: 0px auto;
}

.image {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, .1);
}

.image img {
    display: block;
    width: 100%;
}

.image-full {
    display: block;
    width: 100%;
    margin: 0 0 3em 0;
}

.image-left {
    float: left;
    margin: 0 2em 2em 0;
}

.image-centered {
    display: block;
    margin: 0 0 2em 0;
}

.image-centered img {
    margin: 0 auto;
    width: auto;
}

ul.contact {
    margin: 0;
    padding: 2em 0em 0em 0em;
    list-style: none;
}

ul.contact li {
    display: inline-block;
    padding: 0em 0.10em;
    font-size: 1em;
}

ul.contact li span {
    display: none;
    margin: 0;
    padding: 0;
}

ul.contact li a {
    color: #FFF;
}

ul.contact li a:before {
    display: inline-block;
    background: #4C93B9;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.button {
    display: inline-block;
    margin-top: 2em;
    padding: 0.8em 2em;
    background: #64ABD1;
    line-height: 1.8em;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 1em;
    color: #FFF;
}

.button:before {
    display: inline-block;
    background: #8DCB89;
    margin-right: 1em;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    color: #272925;
}

td {
    text-align: center;
}

th {
    text-align: center;
}

button {
    border: none;
    color: white;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition-duration: 0.2s;
    background-color: rgba(255, 255, 255, 0);
}

button:hover {
    background-color: rgba(255, 255, 255, 0);
}

.btn-type {
    border: solid 2px rgb(5, 160, 129);
    background-color: rgb(5, 160, 129);
    ;
    box-shadow: 0px 5px 0px 0px rgb(4, 126, 101);
}

.btn-type:hover {
    border: solid 2px rgb(5, 145, 117);
    background-color: rgb(5, 145, 117);
    transform: scale(1.02);
}

.btn-type:active {
    border: solid 2px rgb(5, 160, 129);
    background-color: rgb(5, 160, 129);
    ;
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px rgb(4, 126, 101);
}

.wrapper {
    max-width: 1000px;
    margin: auto;
}

.btn-type2 {
    background-color: rgb(255, 255, 255);
    border: none;
    color: rgb(5, 160, 129);
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition-duration: 0.2s;
    border: solid 2px rgb(5, 160, 129);
}

.btn-type2:hover {
    background-color: rgb(5, 160, 129);
    color: white;
    border: solid 2px rgb(5, 160, 129);
}

input,
textarea {
    background-color: rgb(255, 255, 255);
    border: none;
    color: rgb(5, 160, 129);
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition-duration: 0.2s;
    border: solid 2px;
}

input:focus,
textarea:focus {
    outline: none;
}

textarea {
    font-size: 25px;
}

h2 {
    color: rgb(5, 160, 129);
}

.container2,
.flip-box,
.front,
.back {
    width: 600px;
    height: 300px;
    border-radius: 10px;
}

.container2,
.flip_box {
    position: relative;
    cursor: pointer;
}

.front,
.back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.flip_box {
    height: 0px;
}

.container {
    -moz-transform: perspective(1200px);
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.flip_box {
    transition: all 0.5s ease-out;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flipped {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.r_wrap {
    position: absolute;
    right: 40px;
    bottom: 38px;
}

.s_round {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #D21849;
    transition: all 0.2s linear;
}

.s_round_click {
    transform: scale(1.7);
}

.s_arrow {
    width: 52px;
    height: 52px;
    background-image: url('https://img-fotki.yandex.ru/get/194549/29644339.5/0_d6c60_1d7815f0_orig');
    background-color: transparent;
    transition: all 0.35s linear;
}

.front {
    background-color: rgb(5, 160, 129) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back {
    background-color: rgb(5, 160, 129) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardtext {
    font-size: 20px;
    color: white;
}

.cardsview {
    display: flex;
    z-index: 2;
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.cardbtn {
    margin-top: 10px;
}

#addbtn2 {
    margin-top: 250px;
    background-color: rgb(5, 160, 129);
}

.cardbtn {
    position: absolute;
    margin-top: 310px;
}

.white {
    color: white !important;
}

.cardbtn {
    background-color: rgb(5, 160, 129);
}

.cardbtn:hover {
    background-color: rgb(5, 131, 106);
}

.mycardsrow-title {
    font-size: 20px;
    margin-right: 10px;
    width: 300px;
}

.mycardsrow-options {
    margin-left: 10px;
}

.btn-type2-delete {
    background-color: rgb(255, 255, 255);
    border: none;
    color: #dc3545 !important;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition-duration: 0.2s;
    border: solid 2px;
}

.btn-type2-delete:hover {
    background-color: #dc3545 !important;
    color: white !important;
    border: solid 2px;
}

.space-1 {
    margin-right: 5px;
}

table {
    border-collapse: collapse;
}

.tr {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.mycardsrow-title {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(5, 160, 129);
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lds-roller2 {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller2 div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller2 div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
    margin: -4px 0 0 -4px;
}

.lds-roller2 div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller2 div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller2 div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller2 div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller2 div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller2 div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller2 div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller2 div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller2 div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller2 div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller2 div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller2 div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller2 div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller2 div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller2 div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller2 div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.divider {
    background-color: gray;
    width: 0.5px;
    padding: 0.5px;
    border: 3px solid white;
    border-left-width: 15px;
    border-right-width: 15px;
    border-radius: 10px;
}

.divider2 {
    background-color: white;
    width: 0.5px;
    padding: 0.5px;
    border: 3px solid white;
    border-left-width: 15px;
    border-right-width: 15px;
    border-radius: 10px;
}

td {
    padding: 5px;
}

#content2 {
    height: 270px !important;
    position: relative;
    display: block;
}

.nobar::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.sc1::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.sc1::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.sc1::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 10px;
}

.grid-container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.sc2::-webkit-scrollbar {
    width: 4px;
    height: 8px;
}

.sc2::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.sc2::-webkit-scrollbar-thumb {
    background-color: rgb(5, 160, 129);
    border-radius: 10px;
}

.grid-container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

#scrollup:hover,
#scrolldown:hover,
#closeaddbtn2:hover {
    background-color: rgb(5, 160, 129);
}

.deleteicon {
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    animation: wiggle 2.5s infinite;
}

.active2 {
    display: table-cell !important;
}

.deletecell {
    display: none;
    vertical-align: middle;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }
    80% {
        transform: rotate(0deg);
    }
    85% {
        transform: rotate(10deg);
    }
    95% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.deleteicon:hover {
    animation: none;
}

.text-one {
    position: absolute;
    padding: 0px;
    margin: 0px;
    top: -30px;
}

#editmenu {
    color: white;
}

.editmenucontent {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
}

.editmenucontent>p {
    margin: 0px;
    margin-top: 10px;
    font-weight: bold;
}

.editmenucontent>textarea {
    font-size: 20px;
    width: 60%;
}

th {
    padding: 10px;
}

.optionssection {
    width: -webkit-fill-available;
    height: 50px;
    background-color: white;
    z-index: 10;
    top: -1px;
    padding: 10px;
    position: relative;
    justify-content: center;
    align-items: centerl;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.decoration {
    position: absolute;
    width: 200px;
    background-color: rgb(5, 160, 129);
    height: 10px;
    transform: rotate(-50deg);
    top: 120px;
    left: -58px;
    z-index: -1;
}

.decoration2 {
    position: absolute;
    width: 200px;
    background-color: rgb(5, 160, 129);
    height: 10px;
    transform: rotate(-50deg);
    top: 69px;
    left: -58px;
    z-index: -1;
}

form.searchbar input[type=text] {
    background-color: white;
    border: none;
    color: rgb(5, 160, 129);
    padding: 17px 176px 10px 10px;
    border-radius: 0px;
    font-weight: bold;
    transition-duration: 0.2s;
    border: solid;
    border-width: 0px 0px 2px 0px;
    border-color: rgb(5, 160, 129);
}

form.searchbar input::placeholder {
    color: rgb(5, 160, 129);
}

form.searchbar input:focus {
    background-color: white;
    border: none;
    color: rgb(5, 160, 129);
    padding: 17px 176px 10px 10px;
    border-radius: 0px;
    font-weight: bold;
    transition-duration: 0.2s;
    border: solid;
    border-width: 0px 0px 2px 0px;
    border-color: rgb(5, 160, 129);
}

form.searchbar button {
    border: none;
    color: rgb(5, 160, 129);
    padding: 10px 10px 10px 10px;
    top: 1px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition-duration: 0.2s;
    margin-top: 5px;
    font-size: 11px;
}

form.searchbar button:hover {
    background-color: rgb(5, 160, 129);
    border: none;
    /* color: white;
	*/
    padding: 10px 10px 10px 10px;
    top: 1px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition-duration: 0.2s;
    /* border: solid 2px white;
	*/
    margin-top: 5px;
    font-size: 11px;
    color: white;
}

.optionssection>ul {
    position: absolute;
    right: 45px;
    font-size: 15px;
    /* margin: 10px 20px 0px 0px;
	*/
    transition-duration: 0.5s;
    color: white;
    cursor: pointer;
    height: 100%;
}

.optionssection>ul:after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .5;
}

.optionssection>ul>li {
    margin: 0 auto;
    display: inline-block;
    list-style: none;
    padding: 0;
}

.optionssection>ul>li>a {
    display: block;
    padding: 25px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 1px 0px rgba(0, 0, 0, 0.4);
    color: rgb(5, 160, 129);
    letter-spacing: .2em;
    text-decoration: none;
    transition: color 200ms;
    transform-style: preserve-3d;
}

.optionssection>ul>li>a:hover {
    color: #3F3D56;
}

.optionssection>ul>li:nth-child(4)>a {
    margin-right: 10px;
}


/* .optionssection > ul > li > a:after {
	content: attr(data-title);
	position: absolute;
	display: block;
	text-shadow: none;
	top: 29%;
	left: 18px;
	padding: 5px 7.2px;
	color: transparent;
	background: #0572a0;
	transform-origin: 50% 0%;
	backface-visibility: hidden;
	transform: translate3d(0px, 105%, 0px) rotateX(-112deg);
	transform-style: preserve-3d;
	transition: all 200ms ease;
	z-index: -1;
}
*/


/* .navbar-top > ul > li:nth-child(2) a:after {
	background: #ecc64b;
}
.navbar-top > ul > li:nth-child(3) a:after {
	background: #0b9ea6;
}
.navbar-top > ul > li:nth-child(4) a:after {
	background: #f26667;
}
*/

.optionssection>ul>li>a:hover:after {
    transform: rotateX(0deg) translateZ(0px);
}

.logo {
    display: block;
    /* padding: 25px;
	*/
    padding-top: 10px;
    padding-left: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 1px 0px rgba(0, 0, 0, 0.4);
    color: white !important;
    letter-spacing: .2em;
    text-decoration: none;
    transition: color 200ms;
    transform-style: preserve-3d;
}

.profileicon {
    position: absolute;
    right: 0;
    font-size: 30px;
    margin: 10px 20px 0px 0px;
    transition-duration: 0.5s;
    color: rgb(5, 160, 129);
    cursor: pointer;
}

.profileicon:hover {
    color: #dad8d8;
}

.vertical-menu {
    z-index: 101;
    width: 175px;
    position: absolute;
    right: 20;
    top: 80px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .08);
    transition-duration: 1s;
}

.vertical-menu a {
    /* background-color: #eee;
	*/
    color: black;
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #393D4B;
    font-size: .875rem;
}

.vertical-menu div {
    /* background-color: #eee;
	*/
    color: black;
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #393D4B;
    font-size: 15px;
}

.vertical-menu a:hover {
    background-color: rgb(5, 160, 129);
    color: white !important;
}

.vertical-menu a:hover>i {
    color: white !important;
}

space {
    padding: 5px;
}


/* hr{
	margin-left: 10px;
	margin-right: 10px;
	border: .1rem solid #1a1d28;
	height: 0px;
	background-color: #1a1d28;
	padding: 0px;
	*/


/* height: 0px;
	background-color: gray;
	*/


/* 
}
*/

.top-border {
    border-top: .125rem solid #EDEFF4;
    border-width: 1.5;
}


/* .wrapper{
	background-color: white;
	border-radius: 8px;
	padding: 10px;
}
*/

.main__content {
    display: none;
}

.activetab {
    display: block;
}

body.dark>.wrapper>center>center>.menuscrollleft>a {
    background-color: #292c2f;
}

body.dark>.wrapper>center>center>.menuscrollleft>.grid-container>.widget {
    background-color: #292c2f;
}

body.dark>.wrapper>center>center>.menuscrollleft>.grid-container>.widget>a>table>tbody>tr>td>h3 {
    color: white !important;
}

body.dark>.wrapper>center>center>.menuscrollleft>.grid-container>.widget>a>table>tbody>tr>td>p {
    color: white !important;
}

body.dark>.wrapper>center>center>.menuscrollleft>.grid-container>.widget>a>table>tbody>tr>td {
    color: white !important;
}

body.dark>.wrapper>center>center>.menuscrollleft>.grid-container>.widget>a>table>tbody>tr>td>span {
    color: white !important;
}

body.dark {
    background: #1E2227;
    color: white;
    /* height: 100px;
	*/
}

body.dark>.wrapper>center>#content>.widget {
    background-color: #282C34;
}

body.dark>.wrapper>center>#content>.widget>a>table>tbody>tr>td>h3 {
    color: white !important;
}

body.dark>.wrapper>center>#content>.widget>a>table>tbody>tr>th>span {
    color: rgb(0 205 164) !important;
}

body.dark>.wrapper>center>#content>.widget>a>table>tbody>tr>th>i {
    color: white !important;
}

body.dark>#accountmenu {
    background-color: #282C34 !important;
}

body.dark>#accountmenu>a {
    color: white !important;
}

body.dark>#accountmenu>div {
    color: white !important;
}

body.dark>#accountmenu>a>i {
    color: white !important;
}

body.dark>.optionssection {
    background-color: rgb(2 125 100);
}

body.dark>.navbar-top>ul {
    background-color: rgb(2 125 100);
}

body.dark>.decoration {
    background-color: rgb(2 125 100);
}

body.dark>.decoration2 {
    background-color: rgb(2 125 100);
}

body.dark>.optionssection>.center>.searchbar>input {
    background-color: rgb(2 125 100);
}

body.dark>.optionssection>.center>.searchbar>button {
    background-color: rgb(2 125 100);
}


/* body.dark > .optionssection {
	color: #282C34 !important;
}
*/

body.dark>.wrapper>.container>.main>.main__header {
    background: #292C2F;
}

body.dark>.wrapper>.container>.main>.main__header>h2 {
    color: white;
}

body.dark>.wrapper>.container>.main>.main__content {
    background: #292C2F;
}

body.dark>.wrapper>.container>.main {
    background: #292C2F;
}

body.dark>.wrapper>.container>.sidebar {
    background: #292C2F;
}

body.dark>.wrapper>.container>.sidebar>div {
    background: #292C2F;
}

body.dark>.wrapper>.container>.sidebar>div {
    color: white;
    border-bottom: 1px solid #424242;
}


/* body.dark > .optionssection > .center > .searchbar > input{
	border-color: #282C34 !important;
	background-color: white;
	color: #282C34;
}
body.dark > .optionssection > .center > .searchbar > button{
	background-color: white;
	color: #282C34;
}
body.dark > .optionssection > .profileicon > #profileiconclick{
	color: #282C34;
	background-color: white;
	color: #282C34;
	transition-duration: 0.2s;
}
body.dark > .optionssection > .profileicon > #profileiconclick:hover{
	color: #5a6477;
}
body.dark > .optionssection > .center > .searchbar > input::placeholder{
	color: #282C34;
}
body.dark > .navbar-top > ul{
	color: #282C34;
	background-color: white;
}
*/

a {
    cursor: pointer;
}

button {
    outline: none;
}

.thumbnail {
    height: 150px;
    width: 150px;
    display: inline-block;
    border-radius: 8px;
}

.shadow {
    text-shadow: horizontal-offset vertical-offset blur color;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}


/* .one-line{
	flex: 0 0 100%;
}
*/

.col-two {
    display: block;
    columns: 2;
}

.widget2 {
    max-width: 800px;
    margin: auto;
    /* background: rgb(5,160,129);
	*/
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.widget2>.col-two>p {
    text-align: center;
}

.text-input {
    padding-top: 30px;
    padding-bottom: 10px;
    color: #05A081;
    font-weight: bold;
    font-size: 23px;
    margin: 0px;
}

.mgn-10 {
    margin: 10;
}

.mgn-20 {
    margin: 20;
}

.mgn-30 {
    margin: 30;
}

.mgn-0 {
    margin: 0;
}

.icon-vs {
    font-size: 10px;
}

.icon-s {
    font-size: 20px;
}

.icon-m {
    font-size: 35px;
}

.icon-xm {
    font-size: 45px;
}

.icon-l {
    font-size: 60px;
}

.icon-xl {
    font-size: 100px;
}

.mgn-btm-10 {
    margin-bottom: 10;
}

.mgn-btm-20 {
    margin-bottom: 20;
}

.mgn-btm-30 {
    margin-bottom: 30;
}

.mgn-btm-0 {
    margin-bottom: 0;
}

.mgn-top-10 {
    margin-top: 10;
}

.mgn-top-20 {
    margin-top: 20;
}

.mgn-top-30 {
    margin-top: 30;
}

.mgn-top-0 {
    margin-top: 0;
}

.pad-all-0 {
    padding: 0px;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-vs {
    font-size: 10px;
}

.text-s {
    font-size: 20px;
}

.text-m {
    font-size: 35px;
}

.text-xm {
    font-size: 45px;
}

.text-l {
    font-size: 60px;
}

.text-xl {
    font-size: 100px;
}

.color-white {
    color: white;
}

.color-theme {
    color: rgb(5, 160, 129);
}

.footer-background {
    margin-top: 50px;
    background-color: white;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding: 45px 50px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.footer-background .footer-left p {
    color: gray;
    font-size: 14px;
    margin: 0;
}


/* Footer links */

.footer-background p.footer-links {
    font-size: 18px;
    font-weight: bold;
    color: gray;
    margin: 0 0 10px;
    padding: 0;
    transition: ease .25s;
}

.footer-background p.footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
    transition: ease .25s;
}

.footer-background .footer-links a:before {
    content: "·";
    font-size: 20px;
    left: 0;
    color: gray;
    display: inline-block;
    padding-right: 5px;
}

.footer-background .footer-links .link-1:before {
    content: none;
}

.footer-background .footer-right {
    float: right;
    margin-top: 6px;
    max-width: 180px;
}

.footer-background .footer-right a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 2px;
    font-size: 20px;
    color: gray;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
    transition: all .25s;
}

.footer-background .footer-right a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.footer-background p.footer-links a:hover {
    text-decoration: underline;
}


/* Media Queries */

@media (max-width: 600px) {
    .footer-background .footer-left,
    .footer-background .footer-right {
        text-align: center;
    }
    .footer-background .footer-right {
        float: none;
        margin: 0 auto 20px;
    }
    .footer-background .footer-left p.footer-links {
        line-height: 1.8;
    }
}

.iconajust {
    padding: 8px;
}

body.dark>.footer-background {
    background-color: #292c2f;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding: 45px 50px;
}

body.dark>.footer-background .footer-left p {
    color: #8f9296;
    font-size: 14px;
    margin: 0;
}


/* Footer links */

body.dark>.footer-background p.footer-links {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 10px;
    padding: 0;
    transition: ease .25s;
}

body.dark>.footer-background p.footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
    transition: ease .25s;
}

body.dark>.footer-background .footer-links a:before {
    content: "·";
    font-size: 20px;
    left: 0;
    color: #fff;
    display: inline-block;
    padding-right: 5px;
}

body.dark>.footer-background .footer-links .link-1:before {
    content: none;
}

body.dark>.footer-background .footer-right {
    float: right;
    margin-top: 6px;
    max-width: 180px;
}

body.dark>.footer-background .footer-right a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
    transition: all .25s;
}

body.dark>.footer-background .footer-right a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

body.dark>.footer-background p.footer-links a:hover {
    text-decoration: underline;
}


/* Media Queries */

@media (max-width: 600px) {
    body.dark>.footer-background .footer-left,
    .footer-background .footer-right {
        text-align: center;
    }
    body.dark>.footer-background .footer-right {
        float: none;
        margin: 0 auto 20px;
    }
    body.dark>.footer-background .footer-left p.footer-links {
        line-height: 1.8;
    }
}

body.dark>.wrapper>.widget2 {
    background-color: #292c2f;
}

body.dark>.mainheader>.middle>.header-content>h1 {
    color: white !important;
}

body.dark>.mainheader>.middle>.header-content>p {
    color: white !important;
}

body.dark>.wrapper>.col-two>i {
    color: white !important;
}

body.dark>.wrapper>.col-two>span {
    color: white !important;
}

body.dark>.wrapper>.widget2>h1 {
    color: white !important;
}

body.dark>.wrapper>.widget2>.col-two>p {
    color: white !important;
}

body.dark>.wrapper>.commentbox>i {
    color: white !important;
}

body.dark>.wrapper>.commentbox>h2 {
    color: white !important;
}

body.dark>.wrapper>center>.sticky {
    background-color: #292c2f;
}

.commentbox {
    padding: 50px;
    text-align: center;
}

.commentboxspan {
    font-size: 25px;
    line-height: 1;
}

.commentbox>p {
    font-size: 20px;
    display: contents;
}

.headerimg {
    height: 300px;
    position: absolute;
    bottom: 26px;
    right: 300;
    z-index: -1;
    /* text-align: right;
	*/
}

.header-content {
    /* text-align: center;
	*/
    display: block;
    margin-top: -50px;
}

.middle {
    display: flex;
    width: 50%;
    height: 100%;
    margin: auto;
    border-radius: 10px;
    /* border: 3px dashed #1c87c9;
	*/
    align-items: center;
    justify-content: center;
}

.mainheader {
    height: 600px;
    width: 100%;
    /* background-image: url("../images/pexels-photo-590478.jpeg");
	*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* -webkit-clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
	*/
    margin-top: -2px;
}

.closebtnmobile {
    margin-right: 40px;
}

.mobilenavbtns>li {
    text-align: right !important;
}

.mobilenavbtns {
    padding-top: 40px;
}

.mobilenavbtns>li,
.mobilenavbtns>li>a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 25px;
    text-decoration: none;
    padding-top: 10px;
}

.mobilemenu {
    height: 110%;
    width: 101%;
    background-color: white;
    z-index: 120;
    position: fixed;
    margin-top: -70px;
    display: none;
}

.closebtnmobile {
    color: gray;
}

.visible {
    display: block;
}

.cardsview {
    overflow: initial;
}

.language-error {
    color: red;
}

.error_unsupported {
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 10px;
    background-color: black;
    position: fixed;
    color: white;
}

.error_unsupported2 {
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 10px;
    background-color: black;
    position: fixed;
    color: white;
}

.error_unsupported {
    display: none;
}

.error_turnscreen {
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 10px;
    background-color: white;
    position: fixed;
    color: gray;
    display: inline-block;
    vertical-align: middle;
    padding-top: 35%;
}


/* .error_turnscreen > code{
	margin-top: 50%;
}
*/

.error_turnscreen {
    display: none;
}


/* @media screen and (max-width: 850px){
	.cardsview{
		transform: scale(0.75);
		width: auto !important;
		height: auto !important;
	}
}
@media screen and (orientation:portrait) and (max-width: 500px){
	.error_turnscreen{
		display: block !important;
	}
}
@media screen and (max-width: 600px){
	.cardsview{
		transform: scale(0.6);
		width: auto !important;
		height: auto !important;
		display: block !important;
	}
}
@media screen and (orientation:landscape) and (max-width: 550px){
	.error_unsupported{
		display: block;
	}
	.cardsview{
		display: none;
	}
}
*/

@media screen and (max-width: 630px) {
    .grid-container {
        width: 90% !important;
    }
    .sticky {
        display: none;
    }
    .grid-container {
        width: 100% !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    .scrollbtn {
        padding: 0px !important;
    }
    .profileicon:hover {
        color: white;
    }
    .vertical-menu {
        position: fixed !important;
    }
    body {
        margin-top: 70px;
    }
    .widget2 {
        background-color: rgba(255, 255, 255, 0) !important;
        box-shadow: none !important;
    }
    .optionssection {
        position: fixed;
        z-index: 100;
    }
    .col-two {
        columns: 1;
        margin: 20px;
    }
    .decoration2 {
        display: none;
    }
    .decoration {
        display: none;
    }
    .navbtns {
        display: none;
    }
    .menuicon {
        position: absolute;
        right: 0;
        font-size: 30px;
        margin: 10px 20px 0px 0px;
        transition-duration: 0.5s;
        color: white;
        cursor: pointer;
        display: block !important;
    }
    /* .profileicon{
		right: 40px;
	}
	*/
    .searchbar {
        display: none;
    }
    .currentpagetext {
        display: block !important;
        line-height: 50px;
        color: white;
    }
}

.currentpagetext {
    display: none;
}

@media screen and (max-width: 1000px) {
    .searchbar {
        display: none;
    }
}

@media screen and (max-width: 1100px) {
    .headerimg {
        position: inherit;
        padding: 20px;
        height: 150px;
    }
    .header-content {
        padding-top: 100px;
    }
}

.menuicon {
    display: none;
}

.grid-container {
    width: 1020px;
}

@media screen and (max-width: 1020px) {
    .grid-container {
        width: 800px;
    }
}

@media screen and (max-width: 820px) {
    .grid-container {
        width: 600px;
    }
}

.hello {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

hgroup {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 400px;
    margin: auto;
    color: #fff;
    z-index: 2;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/photo-1502102235117-ba0dd5f61c88-blur.jpg) no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 0;
}

.font-effect-destruction {
    font-size: 62px;
    /* color: white;
	*/
    /* color: rgba(255, 255, 255, 0);
	*/
    background-color: rgb(5, 160, 129);
    border-radius: 8px;
    color: white;
    padding: 10px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

hgroup>p {
    border-radius: 8px;
    font-size: 20px;
    margin-top: 10px;
    /* color: rgba(255, 255, 255, 0);
	*/
    padding: 10px;
    color: white;
    background-color: rgb(5, 160, 129);
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.footer-background {
    /* margin-top: 50px;
	*/
    background-color: white;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding: 25px 20px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.footer-background .footer-left p {
    color: gray;
    font-size: 14px;
    margin: 0;
}


/* Footer links */

.footer-background p.footer-links {
    font-size: 18px;
    font-weight: bold;
    color: gray;
    margin: 0 0 10px;
    padding: 0;
    transition: ease .25s;
}

.footer-background p.footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
    transition: ease .25s;
}

.footer-background .footer-links a:before {
    content: "·";
    font-size: 20px;
    left: 0;
    color: gray;
    display: inline-block;
    padding-right: 5px;
}

.footer-background .footer-links .link-1:before {
    content: none;
}

.footer-background .footer-right {
    float: right;
    margin-top: 6px;
    max-width: 180px;
}

.footer-background .footer-right a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 2px;
    font-size: 20px;
    color: gray;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
    transition: all .25s;
}

.footer-background .footer-right a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.footer-background p.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer-background .footer-left,
    .footer-background .footer-right {
        text-align: center;
    }
    .footer-background .footer-right {
        float: none;
        margin: 0 auto 20px;
    }
    .footer-background .footer-left p.footer-links {
        line-height: 1.8;
    }
}

.iconajust {
    padding: 8px;
}