.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #1a1a1a;
color: #fff;
padding: 1rem 0;
z-index: 1000;
transform: translateY(100%);
transition: transform 0.3s ease-out;
}
.cookie-consent.show {
transform: translateY(0);
}
.cookie-consent__container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.cookie-consent__content {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.cookie-consent__text {
flex: 1;
min-width: 250px;
margin: 0.5rem 0;
font-size: 0.9rem;
}
.cookie-consent__link {
color: #f9c719;
text-decoration: underline;
}
.cookie-consent__buttons {
display: flex;
gap: 0.75rem;
}
.cookie-consent__btn {
padding: 0.5rem 1rem;
border-radius: 4px;
border: none;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}
.cookie-consent__btn--settings {
background: transparent;
color: #fff;
border: 1px solid #fff;
}
.cookie-consent__btn--settings:hover {
background: rgba(255, 255, 255, 0.1);
}
.cookie-consent__btn--accept {
background: #f9c719;
color: #000;
}
.cookie-consent__btn--accept:hover {
background: #2980b9;
} .cookie-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 2000;
display: none;
}
.cookie-modal.show {
display: block;
}
.cookie-modal__overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
}
.cookie-modal__content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
border-radius: 8px;
width: 90%;
max-width: 600px;
max-height: 90vh;
overflow-y: auto;
color: #333;
}
.cookie-modal__header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 1.5rem 1rem;
border-bottom: 1px solid #eee;
}
.cookie-modal__title {
font-size: 1.25rem;
font-weight: 600;
}
.cookie-modal__close {
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: #666;
}
.cookie-modal__body {
padding: 1.5rem;
}
.cookie-modal__description {
margin-bottom: 1.5rem;
color: #666;
}
.cookie-modal__footer {
padding: 1rem 1.5rem;
border-top: 1px solid #eee;
text-align: right;
}
.cookie-modal__btn {
padding: 0.5rem 1.5rem;
border-radius: 4px;
border: none;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}
.cookie-modal__btn--save {
background: #f9c719;
color: #000;
}
.cookie-modal__btn--save:hover {
background: #2980b9;
} .cookie-category {
margin-bottom: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid #eee;
}
.cookie-category:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.cookie-category__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
}
.cookie-category__title {
font-size: 1rem;
font-weight: 600;
}
.cookie-category__description {
color: #666;
font-size: 0.9rem;
} .cookie-toggle {
position: relative;
display: inline-block;
width: 50px;
height: 24px;
}
.cookie-toggle input {
opacity: 0;
width: 0;
height: 0;
}
.cookie-toggle__slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 24px;
}
.cookie-toggle__slider:before {
position: absolute;
content: "";
height: 16px;
width: 16px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
.cookie-toggle input:checked + .cookie-toggle__slider {
background-color: #f9c719;
}
.cookie-toggle input:checked + .cookie-toggle__slider:before {
transform: translateX(26px);
}
.cookie-toggle input:disabled + .cookie-toggle__slider {
background-color: #95a5a6;
cursor: not-allowed;
} @media (max-width: 768px) {
.cookie-consent__content {
flex-direction: column;
text-align: center;
}
.cookie-consent__buttons {
width: 100%;
justify-content: center;
}
.cookie-modal__content {
width: 95%;
}
.cookie-consent__text{
font-size: 0.6rem;
}
.cookie-consent__btn{
font-size: 0.7rem;
}
}:root {
--primary-color: #1a1a1a;
--secondary-color: #FFF208;
--secondary-color-hover: #e8dc02;
--accent-color: #3498db;
--light-color: #ecf0f1;
--dark-color: #180A09;
--success-color: #2ecc71;
--sidebar-bg: #1a1a2e;
--sidebar-accent: #FFF208;
--header-bg: #131313;
--footer-bg: #180A09;
}
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #000;
color: #fff;
line-height: 1.6;
-webkit-transition: margin-left 0.3s;
-o-transition: margin-left 0.3s;
transition: margin-left 0.3s;
}
ol,
ul{
margin: 15px 0;
padding-left: 35px;
}
ol li:not(:last-child),
ul li:not(:last-child) {
margin-bottom: 10px;
}
.table-wrapper{
overflow-x: auto;
}
table{
margin: 25px 0;
width: 100%;
border-collapse: collapse;
}
table caption{
margin-bottom: 15px;
text-align: left;
color: #e2e2e2;
}
table th,
table td{
padding: 15px;
border-color: #e2e2e2;
}
table th {
-webkit-backdrop-filter: brightness(0.8);
backdrop-filter: brightness(0.8);
}
blockquote {
-webkit-backdrop-filter: brightness(0.7);
backdrop-filter: brightness(0.7);
padding: 30px;
border-radius: 10px;
overflow: hidden;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
pre {
-webkit-backdrop-filter: brightness(0.7);
backdrop-filter: brightness(0.7);
border-radius: 10px;
overflow: hidden;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
padding: 20px;
border: 2px dashed;
margin: 25px 0;
background: var(--dark-color);
}
input{
background: none;
border: 2px solid #FEB859 !important;
padding: 10px 20px !important;
color: #fff !important; 
}
textarea{
background: none;
border: 2px solid #FEB859;
padding: 20px;
color: #fff;
min-height: 200px;
}
.container {
width: 90%;
max-width: 2152px;
margin: 0 auto;
padding: 0 15px;
} .header {
background-color: var(--header-bg);
color: #fff;
-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 10px 20px;
}
.logo a{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.logo img {
height: 25px;
width: auto;
-webkit-transition: -webkit-transform 0.3s;
transition: -webkit-transform 0.3s;
-o-transition: transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s, -webkit-transform 0.3s;
}
.logo img:hover {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
.desktop-nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
list-style: none;
margin: 0 auto;
}
.desktop-nav li {
position: relative;
margin-bottom: 0;
}
.desktop-nav li a {
display: block;
color: #fff;
text-decoration: none;
padding: 10px 15px;
font-weight: 500;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
gap: 6px;
}
.desktop-nav li a:hover, 
.desktop-nav li a.active {
color: var(--secondary-color);
}
.desktop-nav li a::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
width: 0;
height: 2px;
background: #FEB859;
-webkit-transition: width 0.3s;
-o-transition: width 0.3s;
transition: width 0.3s;
}
.desktop-nav li a:hover::after {
width: 70%;
}
.header-content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-left: 20px;
}
.header-actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 15px;
}
.menu-toggle {
background: none;
border: none;
color: #fff;
font-size: 1.5rem;
cursor: pointer;
display: block; margin-right: 15px;
}
.user-actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 15px;
}
.user-actions a {
color: #000;
text-decoration: none;
font-weight: 500;
padding: 4px 15px;
border-radius: 4px;
font-weight:600;
font-size: 18px;
transform: skewX(-10deg);
text-transform: uppercase;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.user-actions .login {
background-color: transparent;
border: 1px solid #fff;
background: #fff;
border-radius: 4px;
-webkit-transition: -webkit-filter 0.3s ease;
transition: -webkit-filter 0.3s ease;
-o-transition: filter 0.3s ease;
transition: filter 0.3s ease;
transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.user-actions .login:hover {
background-color: none;
-webkit-filter: drop-shadow(0 0 6px #fff);
filter: drop-shadow(0 0 6px #fff);
}
.user-actions .register {
background: #FEB859;
border-radius: 4px;
-webkit-transition: -webkit-filter 0.3s ease;
transition: -webkit-filter 0.3s ease;
-o-transition: filter 0.3s ease;
transition: filter 0.3s ease;
transition: filter 0.3s ease, -webkit-filter 0.3s ease;
color: #000 !important;
}
.user-actions .register:hover {
-webkit-filter: drop-shadow(0 0 6px #FFF208);
filter: drop-shadow(0 0 6px #FFF208);
} .sidebar {
width: 0;
position: fixed;
z-index: 1001;
top: 0;
left: 0;
background-color: var(--header-bg);
overflow-x: hidden;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
padding-top: 60px;
-webkit-box-shadow: 2px 0 5px rgba(0,0,0,0.1);
box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}
.sidebar.open {
width: 280px;
}
.sidebar-header {
padding: 20px;
color: #fff;
border-bottom: 1px solid #333;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.close-btn {
background: none;
border: none;
color: #fff;
font-size: 1.5rem;
cursor: pointer;
}
.sidebar-menu {
list-style: none;
height: calc(100vh - 120px);
overflow-y: auto;
padding-left: 0;
}
.sidebar-menu li {
position: relative;
margin-bottom: 0;
}
.sidebar-menu li a {
display: block;
color: #ddd;
padding: 5px 20px;
text-decoration: none;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
border-left: 3px solid transparent;
}
.sidebar-menu li a:hover {
background-color: var(--secondary-color-hover);
color: #000;
border-left: 3px solid var(--sidebar-accent);
}
.sidebar-menu li a i {
margin-right: 10px;
width: 20px;
text-align: center;
}
.dropdown-menu {
list-style: none;
display: none;
padding-left: 0;
}
.dropdown-menu li a {
padding-left: 40px;
}
.dropdown.active .dropdown-menu {
display: block;
}
.dropdown-toggle::after {
content: '\f078';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
float: right;
-webkit-transition: -webkit-transform 0.3s;
transition: -webkit-transform 0.3s;
-o-transition: transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s, -webkit-transform 0.3s;
}
.dropdown.active .dropdown-toggle::after {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
} .overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
z-index: 1000;
}
body.menu-open {
margin-left: 280px;
overflow: hidden;
}
body.menu-open .sidebar {
width: 280px;
}
body.menu-open .overlay {
display: block;
} .language-selector {
padding: 15px 20px;
border-top: 1px solid #333;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.language-selector i {
margin-right: 10px;
color: #ddd;
}
.language-selector select {
background-color: transparent;
color: #fff;
border: none;
padding: 5px;
}
.language-selector select option {
background-color: var(--sidebar-bg);
} .support-link {
display: block;
background: #FEB859;
color: #000;
text-align: center;
padding: 15px;
margin: 20px;
border-radius: 5px;
text-decoration: none;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.support-link:hover {
background-color: var(--secondary-color-hover);
-webkit-filter: drop-shadow(0 0 6px var(--secondary-color));
filter: drop-shadow(0 0 6px var(--secondary-color));
} .hero-banner {
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.2)), to(rgba(0,0,0,.8)));
background: -o-linear-gradient(top, rgba(0,0,0,.2), rgba(0,0,0,.8));
background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.8));
color: #fff;
padding: 100px 0;
text-align: center;
margin-bottom: 30px;
position: relative;
overflow: hidden;
border-radius: 15px;
margin-top: 20px;
} .hero-banner::after{
content: '';
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: url(//casinosyaustralia.com/wp-content/themes/spinsy/assets/img/tour/tour-5.webp) no-repeat top center;
background-size: cover; 
z-index: -1;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.hero-banner:hover::after{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
.hero-content {
position: relative;
z-index: 1;
max-width: 800px; text-align: left;
padding: 30px 30px 0;
}
.hero-content-title {
font-size: 2.5rem;
line-height: normal;
margin-bottom: 15px;
font-weight: bold;
text-transform: uppercase;
font-style: italic;
background: #FEB859;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-content-text {
font-size: 1.2rem;
margin-bottom: 25px;
}
.cta-button {
display: inline-block;
background: #FEB859;
color: #000 !important;
padding: 12px 30px;
border-radius: 4px;
text-decoration: none;
font-weight:600;
font-size: 18px !important;
transform: skewX(-10deg);
text-transform: uppercase;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
border: none;
cursor: pointer;
font-size: 1rem;
position: relative;
}
.cta-button:hover {
-webkit-transform: translateY(-3px);
-ms-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-filter: drop-shadow(0 0 6px #FFF208);
filter: drop-shadow(0 0 6px #FFF208);
}
#wpmtst_submit_testimonial{
display: inline-block;
background: #FEB859;
color: #000;
padding: 12px 30px;
border-radius: 4px;
text-decoration: none;
font-weight: 400;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
border: none;
cursor: pointer;
font-size: 1rem;
position: relative;
}
#wpmtst_submit_testimonial:hover{
-webkit-transform: translateY(-3px);
-ms-transform: translateY(-3px);
transform: translateY(-3px);
-webkit-filter: drop-shadow(0 0 6px #FFF208);
filter: drop-shadow(0 0 6px #FFF208);
}
.content {
margin: 35px 0;
}
.content p{
margin: 10px 0;
}
.content a{
color: #FEB859;
font-weight: bold;
}
.content h1{
margin: 25px 0;
}
.content h2{
padding-left: 35px;
margin: 15px 0;
}
.content h2::before{
content: '';
position: absolute;
left: 0;
top: 6px;
display: block;
width: 25px;
height: 25px;
background: url(//casinosyaustralia.com/wp-content/themes/spinsy/assets/img/icons/star.svg) no-repeat center center;
}
.content h3{
margin: 10px 0;
}
.faq {
margin: 35px 0;
font-family: 'Arial', sans-serif;
}
.faq-content {
background-color: var(--dark-color);
border-radius: 12px;
-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.faq-list {
padding: 0;
margin: 0;
list-style: none;
}
.faq-item {
border-bottom: 1px solid #eaeaea;
}
.faq-item:last-child {
border-bottom: none;
}
.faqblock-title {
padding: 18px 20px;
margin: 0;
font-size: 18px;
font-weight: 600;
color: #fff;
cursor: pointer;
position: relative;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.faqblock-title::after {
content: '+';
position: absolute;
right: 20px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 20px;
color: #fff;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
border: 2px solid #fff;
border-radius: 100%;
width: 30px;
height: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.faqblock.active .faqblock-title::after {
content: '-';
}
.faqblock-content {
max-height: 0;
overflow: hidden;
-webkit-transition: max-height 0.3s ease;
-o-transition: max-height 0.3s ease;
transition: max-height 0.3s ease;
background-color: var(--dark-color);
}
.faqblock.active .faqblock-content {
max-height: 1000px;
}
.faqblock-text {
padding: 20px;
padding-top: 0;
color: #fff;
line-height: 1.6;
}
.faqblock-text ol {
padding-left: 20px;
margin: 15px 0;
}
.faqblock-text li {
margin-bottom: 10px;
}
.faqblock-text p {
margin: 15px 0 0;
} .promotion-banner {
background: url(//casinosyaustralia.com/wp-content/themes/spinsy/assets/img/tour/tour-6.webp) center/cover;
height: 300px;
border-radius: 15px;
margin: 30px 0;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
color: #fff;
text-align: left;
overflow: hidden;
}
.promotion-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
}
.promotion-content {
position: relative;
z-index: 1;
padding: 20px; }
.promotion-content-title {
font-size: 3.25rem;
margin-bottom: 15px;
font-weight: bold;
font-style: italic;
}
.promotion-content-text {
margin-bottom: 20px;
font-size: 1.1rem;
} .section-title {
text-align: center;
margin-bottom: 30px;
position: relative;
padding-bottom: 15px;
}
.section-title h2 {
font-size: 2rem;
color: #fff;
display: inline-block;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
width: 80px;
height: 3px;
background: #FEB859;
}
.section-action {
margin: 25px 0;
text-align: center;
}
.section-action .btn{
display: inline-block;
background: #FEB859;
color: #000 !important;
font-weight:600;
font-size: 18px;
transform: skewX(-10deg);
text-transform: uppercase;
padding: 12px 30px;
border-radius: 4px;
text-decoration: none;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
border: none;
cursor: pointer;
position: relative;
}
.wpmtst_submit_testimonial,
input[type="submit"]{
display: inline-block;
background: #FEB859;
color: #000 !important;
padding: 12px 30px;
border-radius: 4px;
text-decoration: none;
font-weight: 400;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
border: none;
cursor: pointer;
font-size: 1rem;
position: relative;
}
.games-grid {
display: -ms-grid;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 25px;
margin: 40px 0;
}
.game-card {
background-color: #fff;
border-radius: 8px;
overflow: hidden;
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
height: 250px;
}
.game-card:hover {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
-webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.game-type{
position: absolute;
left: 0;
top: 0;
background: var(--secondary-color);
color: #000;
font-size: 14px;
padding: 5px 10px;
border-bottom-right-radius: 10px;
z-index: 2;
}
.game-rating{
position: absolute;
right: 0;
top: 0;
padding: 5px 10px;
z-index: 2;
background: var(--dark-color);
border-bottom-left-radius: 10px;
}
.game-card img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
display: block;
}
.game-info {
padding: 15px;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
opacity: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.game-rating {
color: #f39c12;
font-size: 0.9rem;
opacity: 0;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.game-title{
background: var(--dark-color);
color: #fff;
font-weight: 600;
padding: 10px;
opacity: 0;
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 2;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.game-card:hover .game-info,
.game-card:hover .game-rating,
.game-card:hover .game-title{
opacity: 1;
}
.play-button {
text-align: center;
background: #FEB859;
color: #000;
padding: 8px 20px;
border-radius: 35px;
text-decoration: none;
font-weight: 500;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: max-content;
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.play-button svg path{
fill: #000;
}
.play-button:hover {
background-color: var(--secondary-color-hover);
-webkit-filter: drop-shadow(0 0 6px var(--secondary-color));
filter: drop-shadow(0 0 6px var(--secondary-color));
} .tournaments-section {
background: -webkit-gradient(linear,left top, left bottom,from(0),color-stop(rgba(0,0,0,0.2)), to(rgba(0,0,0,0.8))),url(//casinosyaustralia.com/wp-content/themes/spinsy/assets/img/banners/tour-banner.avif) no-repeat center center;
background: -o-linear-gradient(0,rgba(0,0,0,0.2), rgba(0,0,0,0.8)),url(//casinosyaustralia.com/wp-content/themes/spinsy/assets/img/banners/tour-banner.avif) no-repeat center center;
background: linear-gradient(0,rgba(0,0,0,0.2), rgba(0,0,0,0.8)),url(//casinosyaustralia.com/wp-content/themes/spinsy/assets/img/banners/tour-banner.avif) no-repeat center center;
background-size: cover;
padding: 50px;
margin: 35px 0;
border-radius: 15px;
} .tournaments-section {
padding: 20px;
color: #333;
} .tabs-container {
margin-bottom: 30px;
}
.tabs {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 10px;
border-bottom: 1px solid #e0e0e0;
padding-bottom: 10px;
overflow-x: auto;
}
.tabs::-webkit-scrollbar{
display: none;
}
.tab-button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: none;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
font-weight: 500;
color: #666;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.tab-button.active {
background-color: #f0f0f0;
color: #000;
font-weight: 600;
}
.tab-button:hover {
background-color: #f5f5f5;
}
.tab-icon {
width: 20px;
height: 20px;
} .tournaments-list {
display: -ms-grid;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 35px 0;
}
.tournament-card {
background: var(--dark-color);
color: #fff;
border-radius: 12px;
-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
overflow: hidden;
-webkit-transition: -webkit-transform 0.3s ease;
transition: -webkit-transform 0.3s ease;
-o-transition: transform 0.3s ease;
transition: transform 0.3s ease;
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.tournament-card:hover {
-webkit-transform: translateY(-5px);
-ms-transform: translateY(-5px);
transform: translateY(-5px);
}
.card-content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-bottom: 50px;
}
.tournament-banner { overflow: hidden;
}
.banner-image {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
}
.tournament-info {
padding: 15px;
}
.info-row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 12px;
}
.tournament-title {
font-size: 18px;
font-weight: 700;
margin: 0;
}
.prize-badge {
background: #000;
border-radius: 16px;
padding: 4px 12px;
}
.badge-text {
font-size: 12px;
font-weight: 500;
margin: 0;
color: #fff !important;
}
.time-info, .bet-info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 5px;
font-size: 14px;
}
.info-icon {
width: 16px;
height: 16px;
}
.info-text {
color: #fff;
}
.action-button {
width: 100%;
padding: 12px;
background: #FEB859;
color: #000 !important;
border: none;
border-radius: 0 0 12px 12px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.action-button:hover {
background-color: var(--secondary-color-hover);
-webkit-filter: drop-shadow(0 0 6px var(--secondary-color));
filter: drop-shadow(0 0 6px var(--secondary-color));
} .ref-link {
position: absolute;
opacity: 0;
height: 0;
width: 0;
pointer-events: none;
} .modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
z-index: 1001;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.modal-content {
background-color: #fff;
padding: 30px;
border-radius: 8px;
width: 100%;
max-width: 400px;
-webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
position: relative;
-webkit-animation: modalFadeIn 0.3s;
animation: modalFadeIn 0.3s;
}
@-webkit-keyframes modalFadeIn {
from {
opacity: 0;
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
}
to {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes modalFadeIn {
from {
opacity: 0;
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
}
to {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.close-modal {
position: absolute;
top: 15px;
right: 15px;
font-size: 1.5rem;
cursor: pointer;
color: #999;
-webkit-transition: color 0.3s;
-o-transition: color 0.3s;
transition: color 0.3s;
}
.close-modal:hover {
color: #333;
}
.modal h2 {
text-align: center;
margin-bottom: 20px;
color: var(--primary-color);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #555;
}
.form-group input {
width: 100%;
padding: 10px 15px;
border: 1px solid #FEB859;
border-radius: 4px;
font-size: 1rem;
}
.form-group input:focus {
border-color: var(--accent-color);
outline: none;
}
.modal-button {
width: 100%;
padding: 12px;
background-color: var(--accent-color);
color: #fff;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
-webkit-transition: background-color 0.3s;
-o-transition: background-color 0.3s;
transition: background-color 0.3s;
}
.modal-button:hover {
background-color: #2980b9;
}
.form-footer {
text-align: center;
margin-top: 20px;
font-size: 0.9rem;
color: #666;
}
.form-footer a {
color: var(--accent-color);
text-decoration: none;
} .footer {
background-color: var(--dark-color);
color: #fff;
padding: 60px 0 0;
}
.footer-content {
display: -ms-grid;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.footer-section h3 {
font-size: 1.2rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-section h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background: #FEB859;
}
.footer-section p {
margin-bottom: 15px;
color: #bbb;
}
.footer-links {
list-style: none;
margin: 0;
padding: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: #bbb;
text-decoration: none;
-webkit-transition: color 0.3s;
-o-transition: color 0.3s;
transition: color 0.3s;
}
.footer-links a:hover {
color: #fff;
}
.social-links {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 15px;
margin-top: 20px;
}
.social-links a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: #fff;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
text-decoration: none;
}
.social-links a:hover {
background: #FEB859;
-webkit-transform: translateY(-3px);
-ms-transform: translateY(-3px);
transform: translateY(-3px);
color: #000;
}
.copyright {
text-align: center;
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #bbb;
font-size: 0.9rem;
}
.contact-form {
max-width: 500px;
background-color: none;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.submit-btn {
display: inline-block;
background-color: #FFF208;
color: #000;
padding: 10px 20px;
text-decoration: none;
border-radius: 10px;
border: none;
cursor: pointer;
font-size: 16px;
}
.submit-btn:hover {
background-color: #45a049;
}
.related-title {
font-size: 34px;
font-weight: 600;
}
.strong-form-inner{
padding: 0 !important;
}
.jackpot-banner-wrapper {
display: flex;
align-items: center;
justify-content: center;
background: url(//casinosyaustralia.com/wp-content/themes/spinsy/assets/img/banners/jackpot-bg-pattern.png) repeat;
border-radius: 8px;
padding: 16px;
gap: 50px;
position: relative;
overflow: hidden;
margin: 35px 0;
}
.jackpot-banner-logo {
height: 40px;
margin-right: 16px;
}
.jackpot-list {
display: flex;
gap: 16px;
flex-wrap: wrap; }
.jackpot-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 -5px 20px 5px rgba(202,24,164,.25);
}
.jackpot-item::before{
border: 1px solid #ca18a4;
border-radius: 20px;
bottom: -1px;
content: "";
left: -1px;
-webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 70%);
mask-image: linear-gradient(180deg, #000 20%, transparent 70%);
pointer-events: none;
position: absolute;
right: -1px;
top: -1px;
}
.jackpot-item:nth-child(2){
box-shadow: 0 -5px 20px 5px rgba(204,124,2,.25);
}
.jackpot-item:nth-child(2):before{
border: 1px solid #cc7c02;
}
.jackpot-item:nth-child(3){
box-shadow: 0 -5px 20px 5px rgba(28,114,255,.25);
}
.jackpot-item:nth-child(3):before{
border: 1px solid #468cff;
}
.jackpot-item:nth-child(4){
box-shadow: 0 -5px 20px 5px rgba(29,239,158,.25);
}
.jackpot-item:nth-child(4):before{
border: 1px solid #00a395;
}
.jackpot-item-logo-label {
height: 60px;
}
.jackpot-item__value {
display: flex;
align-items: center;
gap: 2px;
font-weight: bold;
color: white;
font-size: 16px;
}
.odometer {
display: inline-block;
position: relative;
}
.odometer-digit {
display: inline-block;
position: relative;
vertical-align: middle;
} .btn {
display: inline-block;
background: #FEB859;
color: #000;
padding: 12px 30px;
border-radius: 4px;
text-decoration: none;
font-weight: 600;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.btn-submit {
background: #FEB859;
color: #fff !important;
font-weight:600;
font-size: 18px;
transform: skewX(-10deg);
text-transform: uppercase;
}
.btn-modern {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.btn-modern:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.cookie-consent{
background: var(--dark-color);
}
.payment-providers img {
height: 25px;
width: auto;
}
.footer-section.payment-providers ul {
display: flex
;
flex-wrap: wrap;
gap: 20px;
list-style-type: none;
margin: 25px 0;
padding: 0;
} @media (max-width: 1024px) {
.jackpot-banner-wrapper {
flex-wrap: wrap;
}
.jackpot-banner-redirect-container {
margin-left: 0;
width: 100%;
margin-top: 16px;
}
.btn {
width: 100%;
text-align: center;
}
}
@media (max-width: 768px) {
.jackpot-list {
flex-direction: column;
width: 100%;
}
.jackpot-banner-logo{
height: auto;
width: 90%;
}
.jackpot-item {
justify-content: space-between;
flex-direction: column;
}
.jackpot-banner-wrapper svg{
display: none;
}
} @media (max-width: 992px) {
blockquote{
width: auto;
}
pre{
width: auto;
font-size: 12px;
}
.container{
width: 100%;
}
.header{
padding: 10px;
}
.desktop-nav{
display: none;
}
.user-actions{
gap: 5px;
}
.hero-banner h1 {
font-size: 2rem;
}
.games-grid {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.promotion-content-title{
font-size: 2.5rem;
}
}
@media (max-width: 768px) {
.hero-banner {
padding: 40px 0;
}
.hero-banner h1 {
font-size: 1.8rem;
}
.promotion-banner {
height: 250px;
}
.promotion-content-title {
font-size: 1.5rem;
}
}
@media (max-width: 576px) {
.header-actions {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.user-actions {
width: auto;
}
.hero-banner h1 {
font-size: 1.5rem;
}
.hero-banner p {
font-size: 1rem;
}
.section-title h2 {
font-size: 1.5rem;
}
.games-grid {
-ms-grid-columns: 1fr 15px 1fr;
grid-template-columns: 1fr 1fr;
gap: 15px;
} .promotion-content-title {
font-size: 1.2rem;
}
}
@media screen and (max-width: 325px) {
.logo img{
display: none;
}
.header-content{
justify-content: flex-end;
}
}.clear {
clear: both;
} .maybe-clear {
content: ""; width: 6em;
display: block;
overflow: hidden;
} .strong-view.wpmtst-default {
display: block;
width: 100%;
}
.strong-view.wpmtst-default div {
box-sizing: border-box;
}
.strong-view.wpmtst-default .wpmtst-testimonial {
max-height: none;
max-width: none;
padding: 0;
width: 100%;
}
.strong-view.wpmtst-default .wpmtst-testimonial.t-slide {
margin-top: 0;
margin-bottom: 0;
}
.strong-view.wpmtst-default .wpmtst-testimonial-inner {
display: block;
width: 100%;
height: 100%;
}
.strong-view.wpmtst-default .wpmtst-testimonial-image {
max-width: 50%;
}
.strong-view.wpmtst-default .wpmtst-testimonial-field-before {
margin-right: 0.5em;
}
.strong-view.wpmtst-default a.readmore,
.strong-view.wpmtst-default a.readmore-toggle {
white-space: nowrap;
z-index: 100;
}
.strong-view.wpmtst-default a.readmore-toggle:hover {
cursor: pointer;
}
.strong-view.slider-container {
opacity: 1;
}
.strong-view .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
} .strong-view.wpmtst-default .strong-content {
margin: 20px auto 0;
}
.strong-view.wpmtst-default .wpmtst-testimonial {
border: 1px solid #E6E6E6;
margin: 20px auto;
text-align: left;
}
.strong-view.wpmtst-default .wpmtst-testimonial:first-child {
margin-top: 0;
}
.strong-view.wpmtst-default .wpmtst-testimonial:last-child {
margin-bottom: 0;
}
.strong-view.wpmtst-default .wpmtst-testimonial-inner {
border: 1px solid #FFFFFF;
padding: 20px;
text-align: left;
}
.strong-view.wpmtst-default .wpmtst-testimonial-inner > *:not(:nth-last-child(2)):not(:last-child) {
margin-bottom: 5px;
}
.strong-view.wpmtst-default .wpmtst-testimonial-heading {
background: url(//casinosyaustralia.com/wp-content/plugins/strong-testimonials/templates/default/img/quotes.png) no-repeat scroll left center transparent;
margin-top: 0;
padding-left: 40px;
text-align: left;
}
.strong-view.wpmtst-default .wpmtst-testimonial-content p:first-of-type {
margin-top: 0;
padding-top: 0;
}
.strong-view.wpmtst-default .wpmtst-testimonial-content p:last-of-type {
margin-bottom: 0;
padding-bottom: 0;
}
.strong-view.wpmtst-default .wpmtst-testimonial-image {
margin-top: 0.25em;
margin-right: 1em;
margin-bottom: 0.25em;
float: left;
}
.strong-view.wpmtst-default .wpmtst-testimonial-image img {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #EFEFEF;
padding: 6px;
margin: 0 auto;
}
.strong-view.wpmtst-default .wpmtst-testimonial-image a {
text-decoration: none;
box-shadow: none;
}
.strong-view.wpmtst-default .wpmtst-testimonial-image .initials {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #EFEFEF;
padding: 6px;
margin: 0 auto;
text-align: center;
font-size: 42px;
font-weight: bold;
display: table-cell;
vertical-align: middle;
}
.strong-view.wpmtst-default .wpmtst-testimonial-field {
text-align: right;
}
.strong-view.wpmtst-default .wpmtst-testimonial-name {
font-weight: bold;
}
.strong-view.wpmtst-default .readmore {
margin-top: 1em;
}
.strong-view.wpmtst-default .strong-view-footer {
margin-bottom: 20px;
}
.strong-view.wpmtst-default .readmore-page {
margin-top: 20px;
padding: 1em;
text-align: center;
border: 1px solid #E6E6E6;
}  .strong-view.wpmtst-default.strong-pager {
display: none;
}
.simplePagerList { margin: 20px auto;
text-align: center;
}
.strong-view ul.simplePagerNav {
margin: 0 auto;
padding: 0;
display: inline-block;
}
.strong-view ul.simplePagerNav li {
display: inline;
list-style: none;
margin: 0;
padding: 0;
}
.strong-view ul.simplePagerNav li a {
margin: 0 0.2em;
padding: 0.1em 0.3em;
outline: none;
text-decoration: none;
transition: background 0.2s ease;
}
.strong-view ul.simplePagerNav li a:hover {
background: #BBB;
color: #FFF;
}
.strong-view ul.simplePagerNav li.currentPage a {
text-decoration: none;
background: #999;
color: #FFF;
}
.strong-view.rtl ul.simplePagerNav li {
float: right;
} .strong-view .nav-links {
margin: 20px auto;
text-align: center;
}
.strong-view .nav-links a, .strong-view .nav-links span {
display: inline-block;
line-height: 1.5;
margin: 0 0.2em;
padding: 0.1em 0.3em;
transition: background 0.2s ease;
}
.strong-view .nav-links a.current, .strong-view .nav-links span.current {
background: #999;
color: #FFF;
}
.strong-view .nav-links a {
outline: none;
text-decoration: none;
}
.strong-view .nav-links a:hover,
.strong-view .nav-links a.prev:hover,
.strong-view .nav-links a.next:hover,
.strong-view .nav-links span:hover {
background: #BBB;
color: #FFF;
} .strong-view.wpmtst-default.slider-container { }
.strong-view.wpmtst-default.slider-container.slider-adaptive:not(.slider-mode-horizontal) .wpmslider-viewport {
border: 1px solid #E6E6E6;
}
.strong-view.wpmtst-default.slider-container.slider-adaptive:not(.slider-mode-horizontal) .wpmtst-testimonial {
border: 0;
}
.strong-view.wpmtst-default.slider-container .strong-content {
margin: 0 auto;
}
.strong-view.wpmtst-default.slider-container .wpmtst-testimonial:not(:first-child) {
display: none;
}
.strong-view.wpmtst-default.nav-position-inside .wpmtst-testimonial-inner {
padding-bottom: 48px;
}
.strong-view.wpmtst-default.controls-type-sides .wpmtst-testimonial-inner {
padding-left: 50px;
padding-right: 50px;
}
.strong-view.wpmtst-default.slider-stretch .wpmtst-testimonial-inner { height: 100%;
} @media only screen and (max-width: 320px) {
.strong-view.wpmtst-default .wpmtst-testimonial-image {
float: none;
margin-left: auto;
margin-right: auto;
}
} @media only screen and (max-width: 320px) and (orientation: portrait) {
.strong-view.wpmtst-default .wpmtst-testimonial-heading {
background: none;
padding-left: 0;
}
} .strong-view.wpmtst-default.rtl .wpmtst-testimonial,
.strong-view.wpmtst-default.rtl .wpmtst-testimonial-inner,
.strong-view.wpmtst-default.rtl .wpmtst-testimonial-heading {
text-align: right;
}
.strong-view.wpmtst-default.rtl .wpmtst-testimonial-image {
float: right;
margin-left: 1em;
}
.strong-view.wpmtst-default.rtl .wpmtst-testimonial-field {
text-align: left;
}
.strong-view.wpmtst-default.rtl .wpmtst-testimonial-heading {
padding-right: 40px;
background-position: right;
} .strong-view.wpmtst-default.image-right .wpmtst-testimonial-image {
float: right;
margin-top: .25em;
margin-bottom: 0.25em;
margin-left: 1em;
}
.strong-view.wpmtst-default.image-right .wpmtst-testimonial-field {
text-align: left;
}
.strong-view.wpmtst-default.image-right.rtl .wpmtst-testimonial-image {
float: left;
margin-left: 0;
margin-right: 1em;
}
.strong-view.wpmtst-default.image-right.rtl .wpmtst-testimonial-field {
text-align: right;
} .strong-view.wpmtst-default.no-quotes .wpmtst-testimonial-heading {
background: none;
padding-left: 0;
} .strong-view.wpmtst-default.dark .wpmtst-testimonial {
border: 1px solid #777;
}
.strong-view.wpmtst-default.dark .wpmtst-testimonial-inner {
border: 1px solid #333;
}
.strong-view.wpmtst-default.dark .readmore-page {
border: 2px solid #777;
}
.strong-view.wpmtst-default.dark ul.simplePagerNav li a:hover {
background: #777;
color: #FFF;
}
.strong-view.wpmtst-default.dark ul.simplePagerNav li.currentPage a {
background: #555;
color: #FFF;
}
.disabled {
display: none !important;
}
.wpmslider-controls.disabled {
display: block !important;
} .msHtmlOverlay .layer .disabled {
display: block !important;
} .readmore-excerpt-inline,
.readmore-content-inline:not([hidden]),
.readmore-content-inline:not([hidden]) p {
display: inline;
}
.wpmtst-inline-readme {
margin-left: 5px;
}.strong-form {
position: relative;
margin: 0 auto;
}
.strong-form .form-field {
margin-bottom: 1.5em;
}
.strong-form .form-field.wpmtst-submit {
margin-bottom: 0;
}
.strong-form .required.symbol:after {
content: '*';
color: #FF0000;
font-size: 1.5em;
font-weight: 400;
margin: 0 5px;
position: relative;
top: 5px;
}
.strong-form label {
display: inline-block;
float: none;
width: auto;
}
.strong-form input[type="text"],
.strong-form input[type="email"],
.strong-form input[type="url"],
.strong-form input[type="file"],
.strong-form select,
.strong-form textarea {
box-sizing: border-box;
display: block;
float: none;
width: 100%;
}
.strong-form input[type="checkbox"] {
-webkit-transform: scale(1.4);
-moz-transform: scale(1.4);
-ms-transform: scale(1.4);
transform: scale(1.4);
margin-left: 12px;
margin-right: 6px;
}
.strong-form input[type="checkbox"] + label {
font-weight: 400;
padding: 5px;
}
.strong-form input[type="checkbox"]:focus + label {
outline: 1px solid #CCC;
}
.strong-form textarea {
height: 16em;
}
.strong-form span.error,
.strong-form label.error {
display: block;
}
.strong-form .before {
display: block;
}
.strong-form .after {
display: block;
}
.strong-form-inner {
padding: 20px;
}
input.captcha {
display: block;
width: auto;
}
img.captcha {
border: 0;
}
.wpmtst-captcha {
margin-bottom: 1em;
} .strong-form ul.strong-category-list,
.strong-form ul.strong-category-list ul.children {
list-style-type: none;
}
.strong-form ul.strong-category-list label,
.strong-form ul.strong-category-list ul.children label {
font-weight: 400;
white-space: nowrap;
word-wrap: break-word;
}
.strong-form ul.strong-category-list {
margin: 0;
padding-left: 0;
}
.strong-form ul.strong-category-list ul.children {
margin-left: 1.5em;
padding-left: 0;
} .strong-form-wait {
display: none;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.7);
}
.strong-form-wait .message {
position: absolute;
top: calc( 50% - 25px );
text-align: center;
width: 100%;
height: 50px;
line-height: 50px;
color: #111;
}
.strong-form-wait .message img {
width: 50px;
height: 50px;
margin: 0 auto;
}
@keyframes wpmtst-spin{
0%{
transform: rotate(360deg);
}
100%{
transform: rotate(0deg);
}
}
.strong-form-wait .message img{
animation: wpmtst-spin 2.5s infinite 0s linear;
}
.strong-form { }
.strong-form label {
font-weight: 700;
}
.strong-form .form-field .after {
font-size: .9em;
font-style: italic;
}
.strong-form input.error,
.strong-form textarea.error,
.strong-form select.error {
background: #F9E5E6;
border: 1px solid #E8AAAD;
color: #B50007;
}
.strong-form span.error,
.strong-form label.error {
color: #B50007;
}
.strong-form .field-wrap {
display: block;
font-weight: 400;
border: 1px solid transparent;
}
.strong-form .field-wrap.error {
border-radius: 3px;
background: #F9E5E6;
border: 1px solid #E8AAAD;
color: #B50007;
}
.strong-form .field-wrap.error .checkbox-label {
outline: none;
}
.strong-form .field-wrap.error .strong-rating {
outline-color: #E8AAAD;
}
.strong-form .field-wrap input + label + .required.symbol:after {
margin-left: 0;
} .strong-form.dark input.error,
.strong-form.dark textarea.error,
.strong-form.dark select.error {
border: 1px solid #FF6666;
}
.strong-form.dark .field-wrap.error {
border: 1px solid #FF6666;
}
.strong-form.dark .field-wrap.error .checkbox-label {
color: #111;
}
.strong-form.dark .field-wrap.error .strong-rating {
outline-color: #FF6666;
}