@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: url(https://www.sarojmeher.com/tools/lib/fonts/pacifico.woff2) format('woff2');
  font-display: swap;
}
/* === VERSION 3 CSS === */
* {
  box-sizing: border-box;
}

/* Add a gray background color with some padding */
body {
  font-family: Arial;
  padding: 0px;
  background: #f1f1f1;
  margin: 0
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  /*float: left;*/
  width: 70%;
  padding: 20px;
  padding-left: 40px;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 30%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
   background-color: white;
   padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #fff;
  margin-top: 20px;
}
.footer a {
	color: #0000ff;
	text-decoration: none;
}
.footer a:hover {
	color: #dc3545;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}
/* === VERSION 3 CSS === */

.header{
    background:#0777a3;
}
.site-title {
    font-size:24px;
	text-align: center;
    font-family: pacifico, cursive;
    color: #fff;
	display: inline;	
}
.site-title a {
    color: #fff;
	text-decoration: none;    
}
.site-title a hover{
    text-decoration:none;
}
#myForm {
    background:#0777a3;
    box-shadow:0 5px 5px 0 rgb(0 0 0 / 20%);
    z-index:999;
	padding-top: 4px;
    padding-bottom: 10px;
}
.fs-name  {
	color: grey;
	padding: 5px 10px;
	font-size: 12px;
	border-radius: 5px 5px 0 0;
	text-transform: uppercase;
	font-family: sans-serif;
}
.fancytext {
	padding-top: 20px;
	display: block;
	text-align: center;
	font-size: 18px;
	width: 95%;
	margin-top: 5px;
	background-color: #f5f5eb;
	color: #333;
	border-radius: 5px;
	outline: 0;
	resize: none
}
.fancytext:focus {
	border-color: #3b3aff;
	border-width: 2px
}
input:focus {
	border-color: #6564ff
}

input {
	font-family: Arial Unicode MS, lucida grande, tahoma, verdana, arial, sans-serif;
	padding: 10px;
	font-size: 20px;
	white-space: nowrap;
	width: 94%;
	text-align: center;
	background: #fff;
	cursor: pointer;
	color: #000;
	border: 1px solid #abababa1;
	border-radius: 5px;
	outline: 0;
	box-shadow: 0 0 5px 1px rgb(0 1 1 / .2)
}
input:hover {
	color: #0777a3;
	border-color: #0777a3;
	text-shadow: 1px 1px 1px #00000045
}
.loadmore {
	font-family: sans-serif;
	font-size: 20px;
	padding: 12px 20px;
	border: 2px solid #0692c9;
	color: #fff;
	margin: 10px 0 5px 0;
	cursor: pointer;
	background: #0777a3;
	text-align: center;
	outline: 0;
	border-radius: 10px;
	box-shadow: 0 1px 2px 2px rgb(0 1 1 / .2)
}
.loadmore:hover {
	background: #fff;
	color: #de3131
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #080808;
    text-align: center;
    white-space: nowrap;
    background-color: #ffffff;
    border: 1px solid red;
    border-radius: 0.25rem;
    float: right;
}
.input-group-text:hover {
    background-color: #ff006a;
    color: white;
}
.form-control:disabled, .form-control[readonly] {
    text-align: center;
    background-color: #fff;
    opacity: 1;
    font-size: 20px;
    padding: 10px;
}
.info {
    font-family: sans-serif;
    margin: 10px auto;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 88%;
    box-shadow: 0 1px 8px 2px rgb(0 1 1 / 20%);
}

/* ================== COPY MESSAGE ================== */
#copymsg {
  visibility: hidden;
  min-width: 250px;
  margin-top: -125px;
  background:linear-gradient(45deg,#024f6e,#0777a3);
  box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 30px;
  font-size: 17px;
}

#copymsg.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {left: 0; opacity: 0;} 
  to {left: 30px; opacity: 1;}
}

@keyframes fadein {
  from {left: 0; opacity: 0;}
  to {left: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {left: 30px; opacity: 1;} 
  to {left: 0; opacity: 0;}
}

@keyframes fadeout {
  from {left: 30px; opacity: 1;}
  to {left: 0; opacity: 0;}
}
/* ================== COPY MESSAGE ================== */

/* ================= NAVIGATION ================ */
/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

/* header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 0px;
}

/* Top SideNav */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #033142;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #aba9a9;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
 }

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
/* Top SideNav */

/* DROPDOWN MENU */
.dropbtn {
  color: white;
  padding: 5px;
  font-size: 18px;
  display: contents;
  cursor: pointer;
}
div.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f0ebe9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ffa885; color:white;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: ;}
/* DROPDOWN MENU */
/* ================= NAVIGATION ================ */
/* =================== SIDEBAR LINKS ==================== */ 
/*===== HOT LINKS =====*/
.hotlinks {
    clear: both;
    padding: 5px;
    color: #777;
    text-align: center;
}
.hotlinks a {
    text-decoration: none;
    padding: 9px;
	width: 90%;
	font-weight: 700;
    display: inline-block;
    color: #000;
    background: #ffc000;
    border-radius: 4px;
    margin: 5px;
	box-shadow: 0 8px 16px 0 rgb(255 217 150);
}
.hotlinks a:hover {
  background-color: #fc0303;
  box-shadow: 0 8px 16px 0 rgba(252, 114, 114);
  color: #fff;
}
/*===== HOT LINKS =====*/
/*===== SM LINKS =====*/
.smlinks {
    clear: both;
    padding: 5px;
    color: #777;
    text-align: center;
}
.smlinks a {
    text-decoration: none;
    padding: 9px;
	width: 90%;
	font-weight: 600;
    display: inline-block;
    color: #fff;
    background: #034e80; /* #046668; */
    border-radius: 4px;
    margin: 5px;
	box-shadow: 0 8px 16px 0 rgb(122 146 163);
}
.smlinks a:hover {
  background-color: #f5d905; /* #02f7eb */
  box-shadow: 0 8px 16px 0 rgba(252, 183, 114);
  color: black;
}
/*===== SM LINKS =====*/
/* Sidebar Links */
.sideXd {
    text-align: center;
}
.sidetitle {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    background: #dc3545;
    clear: left;
    padding: 4px;
    margin-bottom: 6px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

user agent stylesheet
div {
    display: block;
}
.sidebar-seotoollink a {
    display: inline-block;
    width: 100%;
    border: 1px solid #046ac9;
    padding: 6px;
    margin: 3px 0;
    font-size: 18px;
    color: #046ac9;
    text-decoration: none;
    background: #f0ffff;
	border-radius: 20px;
}
.sidebar-seotoollink a:hover {
    display: inline-block;
    width: 100%;
    border: 1px solid #de5c00;
    padding: 6px;
    margin: 3px 0;
    font-size: 18px;
    color: white;
    background: #de5c00;
    border-radius: 20px;
}
/* Sidebar Links */
/* =================== SIDEBAR LINKS ==================== */ 

/* =================== AD SLOT ==================== */ 
@media screen and (max-width: 960px) {
  #ad-slot {
    min-height: 100px;
  }
}
/* =================== AD SLOT ==================== */ 