@keyframes bg-gradient-animation {
	0% {
		background-position: 0 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

.main-shorten-form {
	width: 100%;
}

.main-shorten-block {
	height: 74px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    margin: 0 auto;
    position: relative;
}

.main-shorten-block .shorten-input {
	padding: 10px 145px 10px 20px;
}
.custom-shorten-block .shorten-input {
	padding: 10px 20px 10px 20px;
}
.main-shorten-block .shorten-input, .custom-shorten-block .shorten-input {
    border-radius: 8px;
    appearance: none;
    border: 0;
    box-sizing: border-box;
    color: gray;
    flex: 1 1 auto;
    font-size: 16px;
    height: 100%;
    line-height: normal;
    width: 100%;
    background-color: #fff;
}

.main-shorten-block .shorten-input::placeholder, .custom-shorten-block .shorten-input::placeholder {
  color: #888;
  opacity: 1;
}

.main-shorten-block .shorten-input:focus, .custom-shorten-block .shorten-input:focus {
    outline: 0;
}

.main-shorten-block .shorten-btn {
	align-items: center;
    border-radius: 5px;
    display: flex;
    font-size: 16px;
    justify-content: center;
    padding: 12px 0;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 115px;
    background: #6ca12b;
    border: 0;
    color: #fff;
    cursor: pointer;
    height: auto;
    animation: bg-gradient-animation 3s ease infinite alternate;
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    background-size: 300% 300%;
}

.main-shorten-block .shorten-btn-label {
	display: inline-block;
	margin-left: 10px;
}

.gutter-l-1 {
	padding-right: 2px;
}
.gutter-r-1 {
    padding-left: 2px;
}

.pd-r-2 {
	padding-right: 2px;
}
.pd-l-2 {
    padding-left: 2px;
}

.shorten-box-shadow {
	box-shadow: #ccc 0 5px 16px;
}
.shorten-box-shadow:focus {
    outline: 0;
}
.ml-1, .mx-1 {
    margin-left: .25rem !important;
}

.footer-links .trademark-desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 30px;
}

.trademark-title {
	text-transform: none !important;
    margin-bottom: 20px !important;
}

.preview-l {
    color: inherit;
    transition: all 0.3s ease-in-out;
    font-size: 16px !important;
}
.preview-l:hover {
    color: var(--accent-color);
}
.preview-d {
	font-size: 16px !important;	
}
.preview-t {
	font-weight: 500;
	font-size: 18px !important;
}

.text-1l {
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-3l {
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.preview-b {
	width: 100%;
    font-size: 18px;
    text-align: center;
    position: relative;
    display: block;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--white-color);
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 18px 50px 18px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.preview-b::after {
    top: 0;
    height: 100%;
}
.preview-b::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.preview-b::before {
    transform: translateY(-50%) rotate(45deg);
    filter: brightness(0) invert(1);
}
.preview-b::before {
    content: '';
    position: absolute;
    background: url(/assets/images/arrow-text-fb2e1309443c98479b864ce000beddc3.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    top: 50%;
    right: 20px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  :root {
    --preview-bar-h: 88px;
  }

  body {
    padding-bottom: calc(var(--preview-bar-h) + env(safe-area-inset-bottom));
  }
  
  .preview-b-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom);
    height: var(--preview-bar-h);
    background: #ffffff;
    padding: 12px 16px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  }

  .preview-b-wrapper .preview-b {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.logo-h {
	height: 50px;
}

.footer-logo img {
    width: unset;
    max-width: unset;
    height: 50px;
}

@media only screen and (max-width: 991px) {
    .preview-title, .preview-content {
        margin-bottom: 40px !important;
    }
}

.hero-list ul li {
    min-width: 215px;
}
.hero-counter-image figure img {
    filter: unset;
}

.our-faqs {
    margin-bottom: 100px;
}

.main-content ul, .main-content ol {
	padding: 0px 0px 0px 15px;
}
.main-content ul ul li {
  list-style-type: circle; 
}

.main-content h2,.main-content h3,.main-content h4,.main-content h5{
	padding: 10px 10px 10px 0px;
}
.main-content h1 {
    font-size: 40px;
}
.main-content h2 {
    font-size: 30px;
}
.main-content h3 {
    font-size: 24px;
}
.main-content h4 {
    font-size: 18px;
}

.post-content {
    max-width: unset;
}
.page-header-box .h1 {
    display: inline-block;
    font-size: 70px;
    line-height: 1.3em;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    cursor: none;
}
.page-header-box .h1 span {
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}
.page-single-image img {
    aspect-ratio: unset;
}
.post-featured-image img {
    aspect-ratio: unset;
}

.blog-title-hub {
    overflow-wrap: anywhere;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.checked-pass:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.is-phishing:before {
    content: '\f06a' !important;
}

.text-phishing {
	color: var(--primary-color);
    background-color: var(--accent-color);
    font-size: 16px !important;
}
.text-phishing:hover {
    color: var(--white-color);
}

.text-legit {
    color: var(--primary-color);
    background-color: #00ec0e;
    font-size: 16px !important;
}
.text-legit:hover {
    color: var(--white-color);
}

