:root {
  --primary-color: #2196F3;
  --primary-dark: #1769AA;
  --accent-color: #FF4081;
  --light-bg: rgba(255,255,255,0.05);
  --card-bg: rgba(255,255,255,0.1);
  --text-light: #F0F0F0;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.14);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.3);
  --ripple-duration: .6s;
}
.langs {

       position: fixed;
    top: 18px;
    left: 50%;
    transform: translate(-50%, 5px);
    z-index: 9999999;
    text-align: center;
}
.langs a {
    text-align: center;
      text-decoration: none;
    color: #FFF;
     font-size: 22px;
}
@keyframes bgGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
body {
  font-family: 'Cairo', sans-serif;
  margin: 0; padding: 0;
  color: var(--text-light);
  background: linear-gradient(270deg, #193d26, #2e434a, #1c2645);
  background-size: 600% 600%;
  animation: bgGradient 20s ease infinite;
  overflow-x: hidden;
}

.shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from { transform: translateY(100vh) rotate(0deg); }
  to   { transform: translateY(-100vh) rotate(360deg); }
}
.container {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.card-glass {
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(180%);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.card-glass:hover {
  transform: translateY(-10px) scale(1.02);
}


.card-glass h2,
.card-glass h3 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  text-transform: uppercase;
  position: relative;
}
.card-glass h2::after,
.card-glass h3::after {
  content: '';
  width: 60px; height: 4px;
  background: var(--accent-color);
  display: block;
  margin: .5rem auto 0;
  border-radius: 2px;
}


.card-glass h5 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  text-transform: uppercase;
  position: relative;
}
.card-glass h2::after,
.card-glass h5::after {
  content: '';
  width: 60px; height: 4px;
  background: var(--accent-color);
  display: block;
  margin: .5rem auto 0;
  border-radius: 2px;
}
.form-control, .form-select {
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: .75rem;
  height: 3.2rem;
  color: var(--text-light);
  padding: .6rem 1rem;
  box-shadow: var(--shadow-sm) inset;
  transition: box-shadow .3s, background .3s;
}
.form-control:focus, .form-select:focus {
  outline: none;
  background: rgba(255,255,255,0.3);
  box-shadow: 0 0 0 .2rem var(--primary-color);
}

/* ripple effect */
.btn-material {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: .75rem;
  padding: .75rem 2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.btn-material:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-material::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.4);
  display: block;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(1);
  transition: width var(--ripple-duration) ease-out, height var(--ripple-duration) ease-out, opacity var(--ripple-duration);
}
.btn-material:active::after {
  width: 200px; height: 200px;
  opacity: 1;
  transition: 0s;
}

.table-creative {
  width: 100%;
  background: var(--card-bg);
  border: none;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}
.table-creative thead {
  background: var(--primary-dark);
}
.table-creative th, .table-creative td {
  color: var(--text-light);
  border: none;
  padding: .9rem 1rem;
  text-align: center;
}
.table-creative tbody tr:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.01);
  transition: transform .2s;
}
.offcanvas {
  background: rgba(0,0,0,0.8) !important;
}
.offcanvas .nav-link {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: .5rem 0;
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: background .3s;
}
.offcanvas .nav-link:hover {
  background: rgba(255,255,255,0.1);
}
.loader {
  border: .4rem solid rgba(255,255,255,0.2);
  border-top: .4rem solid var(--accent-color);
  border-radius: 50%;
  width: 3rem; height: 3rem;
  animation: spin 1s linear infinite;
  margin: auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 768px) {
  .card-glass {
    padding: 1.5rem;
  }
  .card-glass h2, .card-glass h3 {
    font-size: 1.8rem;
  }
}
#paymentsTable th,
#paymentsTable td {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  min-width: 180px;
}
.table-responsive {
  overflow-x: auto; 
}
.table-creative {
  background: var(--card-bg);
  box-shadow: var(--shadow-md);
  border-radius: .75rem;
  margin-top: 2rem;
}
.hv-extension-countdown {
	display: none;
	width: 100%;
	height: 100%;
	z-index: 100000
}

#hvLinkedInCookiePermissionBtn {
	padding: 0.625rem 1.5rem;
	border-radius: 8px;
	background: #eb602d;
	color: #fff;
	border-radius: 0.5rem !important;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer
}

.hv-icon-hover-transform:hover {
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2)
}

.hv-icon-unslected #hvPauseImgActive {
	display: none
}

.hv-icon-unslected #hvPauseImg {
	display: block
}

.hv-icon-unslected #hvPlayImgActive {
	display: none
}

.hv-icon-unslected #hvPlayImg {
	display: block
}

.hv-close-highlights #hvMinimizeImgActive {
	display: none
}

.hv-close-highlights:hover #hvMinimizeImg {
	display: none
}

.hv-close-highlights:hover #hvMinimizeImgActive {
	display: block;
	transform: scale(1.2)
}

.hv-highlight-options-div .hv-icon-hover-transform #hvCursorAnimationImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvCursorAnimationImgActive {
	display: block
}

.hv-highlight-options-div .hv-icon-hover-transform #hvPenImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvPenImgActive {
	display: block
}

.hv-highlight-options-div .hv-icon-hover-transform #hvFocusImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvFocusImgActive {
	display: block
}

.hv-highlight-options-div .hv-icon-hover-transform #hvEraseImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvEraseImgActive {
	display: block
}

.hv-highlight-options-div .hv-icon-hover-transform #hvClearImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvClearImgActive {
	display: block
}

.hv-highlight-options-div .hv-icon-hover-transform #hvWebCamImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvWebCamImgActive {
	display: block
}

.hv-highlight-options-div .hv-icon-hover-transform #hvStopImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvStopImgActive {
	display: block
}

.hv-highlight-options-div .hv-icon-hover-transform #hvPauseImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvPauseImgActive {
	display: block
}

.hv-highlight-options-div .hv-icon-hover-transform #hvPlayImg {
	display: none
}

.hv-highlight-options-div .hv-icon-hover-transform #hvPlayImgActive {
	display: block
}

.hv-icon-hover #hvCollapseImg {
	display: none
}

.hv-icon-hover #hvCollapseImgActive {
	display: block
}

.hv-act-comp-bottom-left,
.hv-act-comp-bottom-right {
	position: fixed;
	bottom: 10px;
	-background-color: #424242cc;
	background-color: rgba(49, 49, 49, 0.85);
	max-height: 37px;
	-overflow: hidden;
	border: 0;
	-border-radius: 0px 5px 5px 0px;
	cursor: default;
	z-index: 10000001;
	min-width: 251px
}

.hv-act-comp-bottom-right {
	right: 60px
}

.hv-act-comp-bottom-left {
	left: 50px
}

.hv-collapsed {
	box-sizing: content-box;
	width: 17px;
	height: 17px;
	display: flex;
	justify-content: center;
	background-color: rgba(49, 49, 49, 0.85);
	border-radius: 50%;
	padding: 10px;
	position: absolute;
	top: -40px;
	right: 0px;
	max-height: 37px;
	cursor: pointer;
	transition: all 300ms ease-out
}

.hv-collapsed-icon {
	height: 20px;
	margin-top: -1px
}

#collapsDotsIconActive {
	display: none
}

.hv-icon-hover #collapsDotsIconActive {
	display: block
}

.hv-icon-hover #collapsDotsIcon {
	display: none
}

.hv-tooltip-panel {
	width: 105%;
	left: 0px;
	right: -43px;
	position: absolute;
	bottom: 37px;
	-background-color: #424242cc;
	background-color: rgba(49, 49, 49, 0.85);
	padding: 12px 0px;
	border-radius: 5px 5px 0 0;
	font-size: 11px;
	font-weight: lighter;
	color: #ffffff;
	text-align: center;
	letter-spacing: 0.3px;
	margin: 0 auto;
	transition: all 300ms ease-out;
	line-height: 17px;
	white-space: pre-line
}

.hv-tooltip-panel-toggle {
	bottom: -50px
}

.hv-highlight-options-div img {
	width: 12px;
	height: 12px
}

.hv-icon-out-space {
	display: inline-block;
	cursor: pointer;
	padding: 11px 0px 15px 10px;
	box-sizing: content-box;
	vertical-align: top;
	padding: 13px 10px
}

.hv-icon-out-space img {
	cursor: pointer
}

.hv-icon-out-disable {
	position: relative;
	opacity: 0.3;
	top: 0px;
	height: 37px;
	box-sizing: border-box;
	vertical-align: top
}

.hv-icon-out-disable img {
	margin-bottom: 20px
}

.hv-togarrow-spacer {
	position: absolute;
	background-color: rgba(49, 49, 49, 0.85);
	display: inline-block;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	padding: 0px;
	width: 44px;
	height: 37px
}

.hv-act-comp-bottom-left .hv-togarrow-spacer {
	left: -34px;
	border-radius: 5px 0px 0px 5px;
	width: 34px
}

.hv-togarrow,
.hv-togarrow-left {
	padding: 13px;
	box-sizing: content-box
}

.hv-choose-color-panel {
	width: max-content
}

div.grammarly-desktop-integration {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select:none;
user-select:none;
}

div.grammarly-desktop-integration:before {
content: attr(data-content);
}
.form-control:disabled {
    background-color: rgba(255,255,255,0.2);
}
select option {
    color: #333 !important
}