/*************** ALL ******************/

html,
a,
div,
body,
footer,
head,
header,
img,
section,
label,
span,
li,
br,
textarea,
select,
option,
optgroup,
input,
form {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Text */

.BigText {
    font-size: 2.5em;
    font-weight: 600;
}

.Text1 {
    font-size: 1.5em;
    font-weight: 600;
    font-family: 'tajawalregular';
}

.Topic {
    font-size: 1.5em;
    font-weight: 400;
    font-family: 'amiriregular';
}

.Text2 {
    font-size: 1.3em;
    font-weight: 500;
    font-family: 'tajawalregular';
}

.Text3 {
    font-size: 1em;
    font-weight: 400;
    font-family: 'tajawalregular';
    display:inline;

}

.Text4 {
    font-size: .8em;
    font-weight: 400;
    font-family: 'tajawalregular';
}

.Text5 {
    font-size: .6em;
    font-weight: 400;
    font-family: 'tajawalregular';
}

/* ****** Menu ******* */

.hamburger-container {
    background-color: #2e5266;
    box-shadow: .5px .5px 2px #000;
    width: 200px;
    height: 200px;
    position: fixed;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    bottom: -115px;
    left: -123px;
    z-index: 10;
}

.hamburger {
    width: 22px;
    position: absolute;
    left: 142px;
    border-top: 2px solid #fff;
    cursor: pointer;
    z-index: 3;
    bottom: 136px;
}

.hamburger:after {
    content: "";
    display: block;
    border-top: 2px solid #fff;
    margin-top: 4px;
}

.hamburger:before {
    content: "";
    display: block;
    border-top: 2px solid #fff;
    margin-top: 4px;
}

.plus {
    width: 20px;
    position: absolute;
    border-top: 3px solid #fff;
    cursor: pointer;
    z-index: 3;
    left: 165px;
    bottom: 86px;
}

.plus:after {
    content: "";
    display: block;
    border-top: 3px solid #fff;
    margin-top: -3px;
    transform: rotate(90deg);
}

.page-body {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform-origin: 0 0;
    z-index: 3;
    background-color: var(--1Color);
}

.hamburger-container.open {
    transform: rotate(-50deg);
}

.page-body.open {
    transform: rotate(-50deg);
}

.menu {
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: -1;
    z-index: 1;
    background-color: var(--3Color);
}

.menucont {
    height: 500px;
    width: 400px;
    position: fixed;
    left: -1px;
    bottom: -1px;
}

.menuA {
    width: 45%;
    bottom: 360px;
    position: fixed;
    left: -1px;
}

.menuB {
    width: 55%;
    bottom: 295px;
    position: fixed;
    left: -1px;
}

.menuC {
    width: 65%;
    bottom: 230px;
    position: fixed;
    left: -1px;
}

.menuD {
    width: 75%;
    bottom: 165px;
    position: fixed;
    left: -1px;
}

.menuE {
    width: 99%;
    bottom: 85px;
    position: fixed;
    left: 2px;
}

.menuF {
    width: 99%;
    bottom: 120px;
    position: fixed;
    left: -1px;
}

.logo {
    position: fixed;
    bottom: 10px;
    left: 60%;
}

.nb {
    position: fixed;
    left: -1px;
    height: 55px;
    border-radius: 0 10px 10px 0;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    border: 1px solid #a7a7a7;
    margin: 0px auto;
    background-color: var(--4Color);
    box-shadow: 0px 2px 1px var(--shadow) inset, 0px -2px 8px var(--shadow), 0px 2px 5px rgba(0, 0, 0, 0.1), 0px 8px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: box-shadow 0.5s;
}

.nb:active {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5) inset, 0px -2px 20px var(--shadow), 0px 1px 5px rgba(0, 0, 0, 0.1), 0px 2px 10px rgba(0, 0, 0, 0.1);
    background: -webkit-linear-gradient(top, #d1d1d1 0%, #ECECEC 100%);
}


/* ******** NAV ********** */

footer {
    background-color: var(--8Color);
    color: var(--4Color);
    padding: 20px;
    text-decoration: none;
    text-align: center;
}

.main {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    height: 100%;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.main::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {}


.CheckBox {
    -ms-transform: scale(2);
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    margin: 10px;
}

.Cover {
    position: fixed;
    top: 0;
    overflow-y: scroll;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: var(--1Color);
}

.box {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    display: grid;
    column-gap: 5px;
    grid-gap: 5px;
}

.FBox {
    background-color: var(--2Color);
    color: var(--5Color);
}

.SBox {
    background-color: var(--3Color);
    color: var(--5Color);
}

.TBox {
    background-color: var(--4Color);
    color: var(--5Color);
}

.ThBox {
    background-color: var(--5Color);
    color: var(--5Color);
}

.ZBox {
    background-color: var(--1Color);
    color: var(--5Color);
}

.RoundCorner {
    border-radius: 5px;
}

.card {
    border-radius: 5px;
    border: none;
    background-color: var(--4Color);
}

.cardTopic {
    border-radius: 5px 5px 0 0;
    padding: 10px;
    text-align: center;
    background-color: var(--2Color);
    color: var(--5Color);
}

.FirstBox {
    margin: 5px;
    background-color: var(--4Color);
    border-radius: 3px;
}

.FirstInfo {
    padding: 5px;
    background-color: var(--4Color);
    width: 100%;
    color: var(--5Color);
}

.provinces {
    border-top: 2px solid var(--6Color);
    padding: 8px;
    color: var(--5Color);
    text-align: center;
}

.citybox {
    margin: 0.5em;
    display: none;
    background-color: var(--3Color);
    color: var(--5Color);
}

.provinces2 {
    border-top: 2px solid var(--6Color);
    padding: 8px;
    color: var(--5Color);
    text-align: right;
}

.citybox2 {
    width: 80%;
    background-color: var(--3Color);
    color: var(--5Color);
    margin: 0 auto;
}

.hideBox {
    display: none;
}

.BottomBorder {
    border-bottom: .1px dotted var(--5Color);
}

.CitiesCount {
    float: left;
    padding-left: 5px;
    color: var(--5Color);
    padding: 5px;
}

.Grid323 {
    width: 100%;
    display: grid;
    grid-template-columns: 45% 10% 45%;
    grid-gap: 2px;
}

.up10 {
    top: 20;
    position: relative;
}

/********************** C Start *********************/

.Grid28 {
    width: 100%;
    display: grid;
    grid-template-columns: 80% 20%;
    grid-gap: 2px;
}
.Grid2_82 {
    width: 100%;
    display: grid;
    grid-template-columns: 20% 80%;
    grid-gap: 2px;
}

.Grid29 {
    width: 100%;
    display: grid;
    grid-template-columns: 90% 10%;
    grid-gap: 2px;
}

.Marker {
    position: absolute;
    top: -2px;
}

.SearchInput {
    width: 80%;
    border: none;
    border-radius: 25px;
    height: 40px;
    color: var(--5Color);
    background-color: var(--4Color);
    padding: 10px;
    text-align: center;
}



/*************** Pd ************************/

.Grid3 {
    width: 100%;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-gap: 2px;
    text-align: center;
    margin: 0 auto;
}

.InptText {
    width: 95%;
    height: 30px;
    border-radius: 6px;
    margin: 5px;
    border: none;
    text-align: center;
    box-shadow: inset 0 0 3px #000000;
    padding: 0.4em;
    color: var(--5Color);
    background-color: var(--input);
}

.InptTextarea {
    position: relative;
    width: 95%;
    border-radius: 6px;
    margin: 5px;
    border: none;
    box-shadow: inset 0 0 3px #000000;
    padding: 0.4em;
    color: var(--5Color);
    background-color: var(--input);
    text-align: center;
}

::placeholder {
    color: var(--5Color);
}

.Grid33 {
    width: 99%;
    display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-gap: 2px;
    text-align: center;
    margin: 0 auto;
}

.Grid325 {
    width: 98%;
    display: grid;
    grid-template-columns: 20% 60% 20%;
    grid-gap: 2px;
}

.Grid37 {
    width: 99%;
    display: grid;
    grid-template-columns: 60% 25% 15%;
    grid-gap: 2px;
    text-align: center;
    margin: 0 auto;
}

.SubBox {
    margin: .7em;
    margin: 0 auto;
}

.SubBut {
    display: inline-block;
    padding: 0.7em 1.7em;
    Text-shadow: inset 3px 3px 5px #cbcbcb, inset -3px -3px 5px #fff;
    background-color: #eec944;
    text-align: center;
    box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
    border: none;
    width: 100%;
    min-width: 100px;
    max-width: 200px;
    padding: 5px;
    border-radius: 5px;
    bottom: 1px;
}

.BackBut {
    display: inline-block;
    padding: 1em 2em;
    Text-shadow: inset 3px 3px 5px #cbcbcb, inset -3px -3px 5px #fff;
    background-color: #eec944;
    text-align: center;
    box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
    border: none;
    width: 70%;
    min-width: 200px;
    max-width: 400px;
    padding: 5px;
    border-radius: 5px;
    bottom: 1px;
}

.DelBut {
    width: 90%;
    height: 90%;
    border: none;
    border-radius: 5px;
    display: inline-block;
    background-color: #f44336;
}


@media all and (max-width:30em) {
    .SubBut {
        display: block;
        margin: 0.4em auto;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.TextCenter {
    text-align: center;
    text-overflow: ellipsis;
}


.RowGrid {
    border-radius: 10px;
    box-shadow: inset 0 0 3px #000000;
    background-color: var(--input);
    grid-template-columns: 20% 70%;
    display: grid;
    grid-gap: 5px;
}

.verifyCon {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.SimbleButton {
    border-radius: 50px;
    max-width: 100px;
    box-shadow: .5px .5px 2px gray;
    padding: 10px;
    margin: 10px;
    border: none;
    background-color: gainsboro;
    color: var(--4color);
    width: 100%;
}

.SendButton {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: .5px .5px 2px gray;
    padding: 3px;
    margin: 5px;
    border: none;
    display: inline-block;
    background-color: #eec944;
    box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
}

.SMSBox {
    border-radius: 5px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.SMSBut {
    background: var(--6color);
    color: var(--5color);
    position: relative;
    text-align: center;
    box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
    border: none;
    min-width: 100px;
    max-width: 300px;
    border-radius: 5px;
    width: 100%;
}

.BButton {
    background-color: var(--5color);
    box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px var(--4color);
    border-radius: 3px;
}

.BlueButton {
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    display: inline-block;
    background-color: var(--3color);
    color: var(--5color);
    position: relative;
    text-align: center;
    box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px var(--4color);
    border: none;
    width: 90%;
    border-radius: 5px;
}

.Grid24 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: center;
    vertical-align: middle;
}

.addServ {
    box-shadow: -1px 12px 12px -5px #3e7327;
    background: linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
    background-color: #77b55a;
    border-radius: 15px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0px 2px 0px #5b8a3c;
}


/****************************************************************************************************************************************************************************************************************/







/* ********* END Dark / light ********* */

.widthHight {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.ImgLogo {
    width: 100px;
    height: auto;
}

.Img80 {
    width: 80px;
    height: auto;
}

.ImgError {
    width: 60%;
    max-height: 100px;
}

.TwitterC {
    background-color: #50abf1;
    width: 100%;
    border-radius: 3px;
}

.EmailC {
    background-color: #FFDC80;
    width: 100%;
    border-radius: 3px;
}

.HomeC {
    background-color: gainsboro;
    width: 100%;
    border-radius: 3px;
}

.BackC {
    background-color: whitesmoke;
    width: 100%;
    border-radius: 3px;
}

.WhatsappC {
    background-color: #128C7E;
    width: 100%;
    border-radius: 3px;
}

.Img50 {
    width: 50px;
    height: auto;
    border-radius: 18px;
    box-shadow: 2px 2px 2px gray;
}

.cImg55 {
    width: 50px;
    height: auto;
    border-radius: 18px;
    box-shadow: 1px 1px 1px 1px #303841;
    background: #ebc023;
    top: -5px;
}

.cImg50 {
    width: 60px;
    height: auto;
    border-radius: 18px;
    box-shadow: 2px 2px 2px gray;
    background: #ebc023;
}

.wImg50 {
    width: 60px;
    height: auto;
    filter:drop-shadow(2px 2px 2px gray);
}

.npImg {
    width: 50px;
    height: auto;
    border-radius: 50px;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.AddButton {
    position: fixed;
    right: 3%;
    bottom: 3%;
    z-index: 9999;
}

.wImg55 {
    width: 50px;
    height: auto;
    top: -5px;
}

.sImg50 {
    width: 50px;
    height: auto;
}

.Img40 {
    width: 40px;
    height: auto;
}

.Img30 {
    width: 30px;
    height: auto;
    bottom: -1px;
}

.Img20 {
    width: 25px;
    height: auto;
    bottom: -1px;
}

.Img15 {
    width: 15px;
    height: auto;
    bottom: -1px;
}

.Divider {
    border: .1px solid #000;
    margin: 3px;
    background-color: inherit;
}

.Padding1 {
    padding: .2em;
}

.Padding2 {
    padding: .5em;
}

.Padding3 {
    padding: 1em;
}

.Padding4 {
    padding: 1.5em;
}

.Margin1 {
    margin: .2em;
}

.Margin2 {
    margin: .5em;
}

.Margin3 {
    margin: 1em;
}

.Margin4 {
    margin: 1.5em;
}

.ShadowP {
    box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #fff;
}

.ShadowTP {
    Text-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #fff;
}

.ShadowTN {
    Text-shadow: inset 3px 3px 5px #cbcbcb, inset -3px -3px 5px #fff;
}

.ShadowN {
    box-shadow: inset 3px 3px 5px #cbcbcb, inset -3px -3px 5px #fff;
}

.SocialIn {
    position: relative;
    width: 90%;
    height: 25px;
    border: 1px solid black;
    border-radius: 6px;
    top: 10px;
}

.CallA {
    background-color: #fbf1d0;
}

.WhatA {
    background-color: #d4f7e1;
}

.TwittA {
    background-color: #cfebfc;
}

.InstA {
    background-color: #f9d4d2;
}





/********************************* All Pages Ends ****************/
/********************************* Index Page Start ****************/


.BordeSolid {
    border: 1px solid darkgray;
}

.BottBordRadius {
    border-radius: 1px 1px 10px 10px;
}

.TopSolidBorder {
    border-top: 2px solid gray;
}

.TopBordRadius {
    border-radius: 10px 10px 1px 1px;
}


.RoundRadius {
    border-radius: 10px;
}

.RoundRadius5 {
    border-radius: 5px;
}

/* Start Search Box ============================= */


/*  End Search Box ============================== */
/*** Cards start **********************************/



.PostCount {
    float: left;
    padding: .1em .5em;
}



.AdBox {
    border-radius: 3px;
    box-shadow: 1px 1px 1px 1px #303841;
    max-width: 680px;
    margin: 0 auto;
}


/********************************* City Page Ends *****************/
/********************************* Post Page Start ****************/

.row {
    border-radius: 10px;
    box-shadow: .5px .5px 2px #000;
}

.row2 {
    border-radius: .2rem;
}

.row3 {
    border-radius: .25em;
    box-shadow: 0 1px 0 rgba(9, 45, 66, .25);
    margin-top: .5em;
}

.LFloat {
    float: left;
    text-align: left;
}

.RFloat {
    float: right;
}

.rating:not(:checked) > input {
    position: absolute;
    appearance: none;
    clip: rect(0, 0, 0, 0);
}

.rating:not(:checked) > label {
    width: 1.2em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 200%;
    line-height: 1.2;
    color: #ddd;
    text-shadow: 1px 1px #bbb, 2px 2px #666, .1em .1em .2em rgba(0, 0, 0, .5);
    float: left;
}

.rating:not(:checked) > label:before {
    content: '★ ';
}

.rating > input:checked ~ label {
    color: #f70;
    text-shadow: 1px 1px #c60, 2px 2px #940, .1em .1em .2em rgba(0, 0, 0, .5);
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    color: gold;
    text-shadow: 1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0, 0, 0, .5);
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
    color: #ea0;
    text-shadow: 1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0, 0, 0, .5);
}

.rating > label:active {
    top: 2px;
    left: 2px;
}

/************************ Post Card start *****************************/

.BoxShadow {
    box-shadow: 1px 1px 5px;
}

.ImgCenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%
}

/************************* Post Card End *****************************/

/***************************** Post Page *****************************/

.Grid22 {
    width: 100%;
    display: grid;
    grid-template-columns: 20% 80%;
    grid-gap: 2px;
}

.Grid27 {
    width: 100%;
    display: grid;
    grid-template-columns: 70% 30%;
    grid-gap: 2px;
}

.Grid2 {
    width: 99%;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 2px;
    margin: 0 auto;
}


.Grid35 {
    width: 99%;
    display: grid;
    grid-template-columns: 10% 80% 10%;
    grid-gap: 2px;
    text-align: center;
    margin: 0 auto;
}

.Grid5 {
    width: 99%;
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    grid-gap: 2px;
    text-align: center;
    margin: 0 auto;
}

.Grid4 {
    width: 99%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-gap: 2px;
    text-align: center;
    margin: 0 auto;
}



/* ********************* Social CheckBox *********************** */

.radio span:before {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    content: "";
    background-color: #fff;
    border: 2px solid #597183;
    border-radius: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.chin[type="radio"]:checked ~ span:before {
    border: 5px solid var(--blue);
}

.chin[type="radio"]:hover ~ span:before {
    border-color: var(--blue);
}

.chin[type="radio"]:focus ~ span:before {
    outline: none;
    box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.4);
}

.toggle {
    position: relative;
    display: block;
    text-align: center;
    float: right;
    padding-left: 5px;
}

.chin[type="checkbox"] {
    position: absolute;
    z-index: 100;
    width: 50px;
    height: 30px;
    vertical-align: middle;
    cursor: pointer;
    opacity: 0;
    top: -3px;
    right: -3px;
}

.toggle span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.toggle span:before {
    display: block;
    width: 48px;
    height: 27px;
    content: "";
    background-color: #8296a4;
    border-radius: 28px;
    transition: background-color 0.3s ease;
}

.toggle span:after {
    position: absolute;
    top: 1px;
    left: 1px;
    display: block;
    width: 25px;
    height: 25px;
    visibility: visible;
    content: "";
    background-color: #fff;
    border-radius: 28px;
    transition: left 0.3s ease;
}

.chin[type="checkbox"]:checked ~ span:before {
    background-color: #3db5eb;
}

.chin[type="checkbox"]:checked ~ span:after {
    top: 1px;
    left: 21px;
}

.chin[type="checkbox"]:hover ~ span:before {
    background-color: #3db5eb;
}

.chin[type="checkbox"]:not(:checked):hover ~ span:before {
    background-color: #afbec9;
}

.chin[type="checkbox"]:focus ~ span:before {
    outline: none;
    box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.4);
}

select {
    color: var(--5Color);
    background-color: var(--input);
    display: block;
    line-height: 1.5;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    border: 1px solid #000;
    border-radius: .5em;
    text-align-last: right;
}

.space {
    visibility: hidden;
}

optgroup {
    color: var(--4Color);
    background-color: var(--5Color);
    font-size: 1.2em;
    font-weight: 700;
}

option {
    color: var(--5Color);
    background-color: var(--input);
    font-size: 1em;
    font-weight: 400;
    direction: rtl;
}

/* ****************** Submit Button ******** */



.NoButton {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    height: 100%;
}


/* Hide massege after 5s */

#hide {
    -webkit-animation: seconds 1.0s forwards;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 7s;
    animation: seconds 1.0s forwards;
    animation-iteration-count: 1;
    animation-delay: 7s;
    position: fixed;
    bottom: 80px;
    left: -1px;
    width: 101%;
    z-index: 9999;
}

@-webkit-keyframes seconds {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        bottom: -9999px;
    }
}

@keyframes seconds {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        bottom: -9999px;
    }
}


.InfoD {
    background-color: #86c5f9;
    border-top: 1px solid white;
    width: 100%;
}

.InfoX {
    width: 90%;
    height: 40px;
    padding: 5px;
    color: #D8000C;
    background-color: #FFD2D2;
    position: fixed;
    top: 8px;
    left: 5%;
    z-index: 9999;
    display: none;
}

.arrow {
    width: 60px;
    height: auto;
    left: 70px;
    bottom: 25px;
    position: fixed;
}

.never {
    width: 20px;
    height: 20px;
    background-color: #86c5f9;
}

.Close {
    position: relative;
}

.npmap {
    width: 100%;
    height: 400px;
    border-radius: 0 0 10px 10px;
    box-shadow: inset 0 0 3px var(--input);
}

.updownmargin {
    margin: 10px 0 10px 0;
}


.vert {
    float: left;
    top: -5px;
    left: 10px;
    position: relative;
    text-align: center;
    font-size: 2.2em;
    transform-origin: center;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
}

/********************************* NEW NEW POST ******************************/

.fl {
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    z-index: 1500;
}

/* Hide the browser-specific focus styles */
.flf {
    border-width: 0;
    z-index: 2000;
}

.flf:focus {
    outline: 0;
    box-shadow: 0;
}

.flf::placeholder {
    color: var(--5Color);
}

/* Make the label and field look identical on every browser */
.fl,
.flf {
    line-height: 1;
    display: block;
    width: 100%;
}

.flf,
.fl-wrap {
    position: relative;
}

/* Input Style #1 */
.flfs1 {
    transition: border-color .25s ease-in-out;
    border: 3px solid var(--trans);
    background-color: transparent;
    border-radius: 5px;
}

.flfs1 + .fl {
    transition: transform .25s, opacity .25s ease-in-out;
    transform-origin: 0 0;
    opacity: 1;
}

.flfs1:focus,
.flfs1:not(:placeholder-shown) {
    border-color: var(--trans);
}

.flfs1:focus + .fl,
.flfs1:not(:placeholder-shown) + .fl {
    transform: translate(40%, -15%) scale(.6);
    opacity: .9;
}

.flfs1:valid:not(:placeholder-shown) {
    border-color: rgba(46, 213, 115, .3);
}

.flfs1:invalid {
    border-color: rgba(255, 71, 87, .3);
}

/* Input Style #2 */
.flfs2 {
    transition: background-color .25s ease-in-out;
    border: 2px solid var(--5Color);
    border-radius: 5px;
    background-color: var(--5Color);
}

.flfs2 + .fl {
    visibility: hidden;
    transition: transform .25s, visibility .5s, opacity .5s ease-in-out;
    opacity: 0;
}

.flfs2:focus + .fl,
.flfs2:not(:placeholder-shown) + .fl {
    visibility: visible;
    transform: translateY(-80%);
    opacity: .5;
}

.flfs2:valid:not(:placeholder-shown) {
    border-color: #adefc8;
    background-color: #adefc8;
}

.flfs2:invalid {
    border-color: #ffe0e3;
    background-color: #ffe0e3;
}

.flfs3 {
    padding: 1.5em;
    transition: border-color .25s ease-in-out;
    border: 1px solid var(--trans);
    border-radius: 5px;
    background-color: transparent;
}

.flfs3 + .fl {
    position: absolute;
    top: .75em;
    right: .75em;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: .75em;
    transition: transform .25s, opacity .25s, padding .25s ease-in-out;
    transform-origin: 0 0;
}

.flfs3:focus,
.flfs3:not(:placeholder-shown) {
    border-color: var(--trans);
}

.flfs3:focus + .fl,
.flfs3:not(:placeholder-shown) + .fl {
    z-index: 2500;
    padding: .75em;
    transform: translate(-1.2em, -60%) scale(.5);
    opacity: .7;
}

.flfs1:not(textarea),
.flfs2:not(textarea),
.flfs3:not(textarea) {
    max-height: 4em;
}

.flfs1,
.flfs1 + .fl,
.flfs2,
.flfs2 + .fl {
    padding: 1.5em;
}

.flfs1 + .fl,
.flfs2 + .fl {
    z-index: 1500;
}

.flfs1::placeholder,
.flfs3::placeholder {
    color: transparent;
}

.fl-hide {
    display: none;
}

input:focus + label + div {
    position: fixed;
    top: 20%;
    width: 90%;
    left: 5%;
    text-align: center;
    display: block;
    padding: 10px;
    color: var(--4Color);
    background-color: var(--fato);
    border-radius: 3px;
    z-index: 99999;
}

.fl-wrap:focus-within h5 {
    position: relative;
    text-align: center;
    display: block;
    padding: 10px;
    bottom: 5px;
}

textarea:focus + label + div {
    position: fixed;
    top: 20%;
    width: 90%;
    left: 5%;
    text-align: center;
    display: block;
    padding: 10px;
    color: var(--4Color);
    background-color: var(--fato);
    border-radius: 3px;
    z-index: 99999;
}


/////////////////////////////////////////////

.darklightswitchbig {
    position: sticky;
    top: 10px;
    left: 20px;
    z-index: 99999;
}

/*////////////////// About Page /////////////////////////////*/


.wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

.speechbubble {
    background-color: var(--3Color);
    line-height: 1.75;
    padding: 15px 25px;
    margin-bottom: 75px;
    cursor: default;
}

.speechbubble:nth-child(2n) {
    border-left: 5px solid;
}

.speechbubble:nth-child(2n):after {
    content: "";
    margin-top: -30px;
    padding-top: 0px;
    position: relative;
    bottom: -45px;
    left: 20px;
    border-width: 30px 0 0 30px;
    border-style: solid;
    border-color: var(--3Color) transparent;
    display: block;
    width: 0;
}

.speechbubble:nth-child(2n+1) {
    border-right: 5px solid;
}

.speechbubble:nth-child(2n+1):after {
    content: "";
    margin-top: -30px;
    padding-top: 0px;
    position: relative;
    bottom: -45px;
    left: 350px;
    border-width: 30px 30px 0 0;
    border-style: solid;
    border-color: var(--3Color) transparent;
    display: block;
    width: 0;
}

.speechbubble:nth-child(4n+1) {
    border-color: #56b273;
}

.speechbubble:nth-child(5n+2) {
    border-color: #01ad9b;
}

.speechbubble:nth-child(5n+3) {
    border-color: #b388dd;
}

.speechbubble:nth-child(5n+4) {
    border-color: #ff8750;
}

.speechbubble:nth-child(5n+5) {
    border-color: yellow;
}

.speechbubble > p:before {
    line-height: 0;
    display: inline-block;
    display: -webkit-inline-box;
}

.speechbubble .username {
    position: relative;
    top: 60px;
    display: inline;
    font-style: italic;
    float: right;
}

.speechbubble .username:before {
    content: "- ";
}

/**** ABOUT PAGE *******/

.BubbleReview {
    margin-top: 20px;
    position: relative;
    width: 90%;
    max-width: 40em;
    padding: 1em 1em;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .3), 0 0.0625rem 0.125rem rgba(0, 0, 0, .2);
}

.BubbleReview::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 100%;
    left: 1.5em;
    border: .75rem solid transparent;
    border-top: none;
    border-bottom-color: var(--3Color);
    filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, .1));
}

.BubbleReview:nth-child(odd) {
    background-color: var(--2Color);
}

.BubbleReview:nth-child(even) {
    align-content: flex-end;
    right: 8%;
}

.BubbleReview:nth-child(odd):before {
    right: 1.5em;
    border-bottom-color: var(--2Color);
}

.BubbleName {
    right: 20%;
}

.BubbleName:nth-child(odd) {
    text-align: left;
}

.Logobox {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 200px;
    height: auto;
    -webkit-animation: ar 5s infinite alternate both;
    animation: ar 5s infinite alternate both;
    float: 
}

.Logobox2 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 200px;
    height: auto;
    -webkit-animation: en 5s infinite alternate both;
    animation: en 5s infinite alternate both;

}

@-webkit-keyframes ar {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes en {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/************************************ temp style **************************************/

.ReviewsBox {
    background-color: var(--4Color);
    color: var(--5Color);
}

.ReviewsBox:nth-child(2n) {
    margin-left: 20px;
    border-left: 6px solid;
}

.ReviewsBox:nth-child(2n+1) {
    margin-right: 20px;
    border-right: 6px solid;
}

.ReviewsBox:nth-child(4n+1) {
    border-color: #56b273;
}

.ReviewsBox:nth-child(4n+2) {
    border-color: #01ad9b;
}

.ReviewsBox:nth-child(4n+3) {
    border-color: #b388dd;
}

.ReviewsBox:nth-child(4n+4) {
    border-color: #ff8750;
}

/************************************ P Box style **************************************/

.BGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
    grid-gap: 15px;
}

.PGrid {
    width: 100%;
    min-width: 300px;
    max-width: 400px;
    display: grid;
    grid-template-rows: 60px 10px 100px 20px 70px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgb(102, 102, 102);
}

.AdPGrid {
    width: 100%;
    min-width: 300px;
    max-width: 400px;
    display: grid;
    grid-template-rows: 60px 10px 100px 20px 70px;
    border-radius: 5px;
    border: 3px solid gold;
    box-shadow: 0 2px 5px rgb(102, 102, 102);
}

a {
    color: inherit;
    text-decoration: none;
}

.PRow1 {
    height: 100%;
    border-radius: 5px 5px 0 0;
    text-align: center;
    color: var(--5Color);
    background-color: var(--3Color);
    margin: 5px;
    white-space: inherit;
    position: relative;
    padding: 5px;
}

.PRow2 {
    height: 100%;
    text-align: center;
    position: relative;
    top: -18px;
}

.PRow3 {
    height: 100%;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.PRow4 {
    position: relative;
    height: 100%;
    top: -10px;
    text-align: center;
}

.PRow5 {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    height: 100%;
    border-radius: 0 0 5px 5px;
    background-color: var(--3Color);
    margin: 5px;
    top: -10px;
    position: relative;
}
.PRow55 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    position: relative;
}
.PRow55V{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.Valign {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

/**************** P ***********************/

.AdContiner {
    width: 100%;
    padding: 3px;
    margin: 0 auto;
}

.AdBoxPost {
    border: 3px solid gold;
    height: 277px;
    min-width: 300px;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px;
    position: relative;
    margin: 1em .2em;
    margin: 0 auto;
}



.AdAd {
    border: 2px solid gold;
    border-radius: 20px;
    width: 35px;
    height: 25px;
    background-color: white;
    font-size: 12px;
    text-align: center;
    position: static;
}

.grid {
    /*border: 1px solid black;*/
    width: 100%;
    flex: 1;
    height: 270px;
    min-width: 300px;
    max-width: 300px;
    position: relative;
    border-radius: 5px;
    background-color: var(--4Color);
    margin: 5px;
}

.gridn {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    height: 270px;
    margin: 5px;
    background-color: var(--4Color);
}


.ShadowB {
    Text-shadow: 1px 2px 3px #bebebe, -1px -3px 3px var(--5Color);
}

t1 {
    display: inline-block;
    margin-right: -5px;
}

/////////////////////////////* global check box */////////////////

label {
	display: inline;
}

.regular-checkbox {
	display: none;
}

.regular-checkbox + label {
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
}

.regular-checkbox + label:active, .regular-checkbox:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.regular-checkbox:checked + label {
	background-color: #e9ecee;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #99a1a7;
}

.regular-checkbox:checked + label:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 3px;
	color: green;
}


.big-checkbox + label {
    width: 25px;
    height: 25px;
	padding: 18px;
}

.big-checkbox:checked + label:after {
	font-size: 48px;
	left: 2px;
    top: -20px;
}


//////////////////////////* YouTube */////////////////////

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

//////////////////////////* invisible */////////////////////

/* Honeypot: invisible, non-interactive, zero overlay risk */
.hp{position:absolute !important;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
.hp input{pointer-events:none;} /* stops it from catching clicks */


/***********************************************************************/
