/* Dibawah ini kodingan css home page*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    background-color: #0d1b46;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header img {
    height: 50px;
}

.header .nav {
    display: flex;
    gap: 20px;
}

.header .nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header .nav a.active {
    background-color: #1a2b6d;
    border-radius: 5px;
}

.header .nav a:hover {
    background-color: #1a2b6d;
    color: #fff;
}

.availability-section {
    position: relative;
    background-color: #003366;
    color: white;
    overflow: hidden;
    padding: 50px 0;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.availability-section img {
    max-width: 100%;
    height: auto;
    flex: 1;
}

.availability-section .text {
    max-width: 100%;
    flex: 1;
    margin-left: 20px;
}

.availability-section h2 {
    font-size: 28px;
}

.availability-section p {
    font-size: 18px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-controls button {
    background-color: #092e73;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slider-controls button:hover {
    background-color: #0d1b46;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background-color: #f5f5f5;
    color: #333;
}

.about-section img {
    max-width: 100%;
    height: auto;
    flex: 1;
}

.about-section .text {
    max-width: 100%;
    flex: 1;
    margin-left: 20px;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    margin-bottom: 10px;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.about-section li span {
    margin-right: 10px;
    font-weight: bold;
    color: #1f41a6;
}

.growth-section {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.growth-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.growth-section .features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.growth-section .feature {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.growth-section .feature img {
    max-width: 100%;
    height: auto;
}

.growth-section .feature p {
    margin-top: 10px;
    font-size: 18px;
}

.growth-section .phones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.growth-section .phone {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.growth-section .phone img {
    width: 150px;
    height: auto;
}

.growth-section .phone p {
    margin-top: 10px;
    font-size: 18px;
}

.fifth-section {
    background-color: #f5f5f5;
    text-align: center;
    padding: 50px 20px;
}

.fifth-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.fifth-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.footer {
    background-color: #0d1b46;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer .logo {
    max-width: 200px;
}

.footer .column {
    flex: 1;
    min-width: 200px;
    margin: 10px 20px;
}

.footer .column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer .column p,
.footer .column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    line-height: 1.6;
}

.footer .column a:hover {
    text-decoration: underline;
}

.footer .column ul {
    list-style: none;
    padding: 0;
}

.footer .column ul li {
    margin-bottom: 10px;
}

.footer .social-media {
    display: flex;
    align-items: center;
}

.footer .social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgb(248, 248, 255);
    width: 100%;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}

/* Media Query untuk perangkat Android dan iOS (layar kecil) */
@media only screen and (max-width: 600px) {
    .header {
        flex-direction: column;
        padding: 15px;
        align-items: center;
    }

    .header img {
        width: 120px;
    }

    .nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav a {
        margin: 5px 0;
        padding: 8px;
    }

    .availability-section,
    .about-section,
    .growth-section,
    .fifth-section {
        padding: 15px;
    }

    .availability-section .text,
    .about-section .text {
        margin-top: 15px;
    }

    .growth-section .feature img,
    .growth-section .phones img {
        width: 100px;
    }

    .footer {
        padding: 20px;
    }

    .footer .column {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .footer .social-media {
        justify-content: center;
        margin-top: 10px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Media Query untuk perangkat dengan layar sangat kecil (misalnya ponsel berukuran kecil) */
@media only screen and (max-width: 375px) {
    .header img {
        width: 100px;
    }

    .nav a {
        font-size: 12px;
    }

    .availability-section h2,
    .about-section h2,
    .growth-section h2,
    .fifth-section h2 {
        font-size: 22px;
    }

    .availability-section p,
    .about-section p,
    .growth-section p,
    .fifth-section p {
        font-size: 14px;
    }

    .growth-section .phone img {
        width: 80px;
    }
}
/* Dibawah ini kodingan css contact page*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.header {
    background-color: #0d1b46;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.header .nav a:hover {
    text-decoration: underline;
}

.availability-section {
    position: relative;
    background-color: #003366;
    color: white;
    overflow: hidden;
    padding: 50px 0; /* Hapus padding atas dan bawah untuk slider */
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.availability-section img {
    max-width: 100%;
    height: auto;
    flex: 1;
}

.availability-section .text {
    max-width: 100%;
    flex: 1;
    margin-left: 20px;
}

.availability-section h2 {
    font-size: 28px;
}

.availability-section p {
    font-size: 18px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-controls button {
    background-color: #092e73;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slider-controls button:hover {
    background-color: #0d1b46;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background-color: #ffffff;
}

.contact-info {
    background-color: #0d1b46;
    color: white;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    box-sizing: border-box;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-info .icon {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info .icon i {
    margin-right: 10px;
    font-size: 20px;
}

.contact-info .social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 10px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: calc(50% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    display: inline-block;
}

.contact-form textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

.contact-form .submit-button {
    background-color: #0d1b46;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form .submit-button:hover {
    background-color: #092e73;
}

.footer {
    background-color: #0d1b46;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #ffffff; /* Garis pembatas bawah */
    padding-bottom: 20px; /* Tambahan padding bawah */
}

.footer .logo {
    max-width: 200px;
}

.footer .column {
    flex: 1;
    min-width: 200px;
    margin: 10px 20px;
}

.footer .column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer .column p,
.footer .column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    line-height: 1.6;
}

.footer .column a:hover {
    text-decoration: underline;
}

.footer .column ul {
    list-style: none;
    padding: 0;
}

.footer .column ul li {
    margin-bottom: 10px;
}

.footer .social-media {
    display: flex;
    align-items: center;
}

.footer .social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgb(228, 232, 234);
    width: 100%;
    padding-top: 20px; /* Tambahan padding atas */
}

/* Responsif untuk perangkat Android dan iOS */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .header .nav a {
        margin: 10px 0;
        font-size: 16px;
    }

    .availability-section {
        flex-direction: column;
        padding: 20px;
    }

    .availability-section img,
    .availability-section .text {
        max-width: 100%;
        margin-left: 0;
    }

    .contact-section {
        flex-direction: column;
        padding: 20px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px;
    }

    .header .nav a {
        font-size: 14px;
    }

    .availability-section,
    .contact-section {
        padding: 10px;
    }

    .availability-section h2,
    .contact-form h2,
    .contact-info h2 {
        font-size: 20px;
    }

    .availability-section p,
    .contact-form p,
    .contact-info p {
        font-size: 14px;
    }

    .footer {
        padding: 15px;
    }

    .footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer .column {
        margin: 5px 0;
    }

    .footer .column h3 {
        font-size: 14px;
    }

    .footer .column p,
    .footer .column a {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 10px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Responsif khusus untuk perangkat Android dan iOS */
@media only screen and (max-width: 600px) {
    .header {
        padding: 15px;
        align-items: center;
    }

    .header .nav a {
        margin: 5px 0;
        padding: 8px;
    }

    .availability-section,
    .contact-section {
        padding: 15px;
    }

    .availability-section .text,
    .contact-info,
    .contact-form {
        margin-top: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .footer .column {
        width: 100%;
        text-align: center;
    }

    .footer .social-media {
        justify-content: center;
        margin-top: 10px;
    }

    .whatsapp-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}


/* Dibawah ini kodingan css Product page*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
.header {
    background-color: #0d1b46;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}
.header .nav a:hover {
    text-decoration: underline;
}
.catalog-section {
    padding: 50px;
    background-color: #ffffff;
}
.catalog-category {
    margin-bottom: 40px;
}
.catalog-category h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.catalog-category p {
    font-size: 16px;
    margin-bottom: 20px;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-item {
    background-color: #f5f5f5;
    padding: 20px;
    flex: 1 1 calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.product-image {
    display: flex;
    justify-content: center; /* Untuk menengahkan gambar */
    align-items: center; /* Untuk menengahkan gambar secara vertikal */
    background-color: #f5f5f5; /* Warna latar belakang */
    padding: 20px; /* Padding untuk memberi ruang di sekitar gambar */
}
.product-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Menjaga rasio aspek gambar */
    max-height: 400px; /* Atur tinggi maksimum gambar sesuai kebutuhan */
}
.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.product-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.product-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}
.features-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}
.features-section h2 {
    font-size: 32px;
    color: #0d1b46;
    margin-bottom: 20px;
}
.features-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.feature-item {
    max-width: 200px;
    text-align: center;
    margin: 10px 20px;
}
.feature-item img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}
.feature-item h3 {
    font-size: 20px;
    color: #0d1b46;
    margin-bottom: 10px;
}
.feature-item p {
    font-size: 14px;
    color: #333;
}
.footer {
    background-color: #0d1b46;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.footer .logo {
    max-width: 200px;
}
.footer .column {
    flex: 1;
    min-width: 200px;
    margin: 10px 20px;
}
.footer .column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.footer .column p,
.footer .column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    line-height: 1.6;
}
.footer .column a:hover {
    text-decoration: underline;
}
.footer .column ul {
    list-style: none;
    padding: 0;
}
.footer .column ul li {
    margin-bottom: 10px;
}
.footer .social-media {
    display: flex;
    align-items: center;
}
.footer .social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgb(228, 232, 234);
    width: 100%;
}

/* Responsif untuk tablet */
@media (max-width: 768px) {
    .catalog-section {
        padding: 30px;
    }
    .product-item {
        flex: 1 1 calc(50% - 20px);
    }
    .header .nav a {
        margin: 0 10px;
        font-size: 16px;
    }
    .catalog-category h2 {
        font-size: 20px;
    }
    .catalog-category p {
        font-size: 14px;
    }
    .product-item h3 {
        font-size: 16px;
    }
    .product-item p {
        font-size: 12px;
    }
    .footer .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer .column {
        margin: 10px 0;
    }
}

/* Responsif untuk hp */
@media (max-width: 480px) {
    .catalog-section {
        padding: 20px;
    }
    .product-item {
        flex: 1 1 100%;
    }
    .header .nav a {
        margin: 0 5px;
        font-size: 14px;
    }
    .catalog-category h2 {
        font-size: 18px;
    }
    .catalog-category p {
        font-size: 12px;
    }
    .product-item h3 {
        font-size: 14px;
    }
    .product-item p {
        font-size: 10px;
    }
}

/* Responsif untuk laptop */
@media (max-width: 1024px) {
    .header .nav a {
        margin: 0 10px;
        font-size: 16px;
    }
    .catalog-section {
        padding: 40px;
    }
}

/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}
/* Header Styles */
.header {
    background-color: #0d1b46;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header img {
    margin-left: 20px;
}
.nav {
    margin-right: 20px;
}
.nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}
.nav a:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background-color: #0d1b46;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.footer .logo {
    max-width: 200px;
}
.footer .column {
    flex: 1;
    min-width: 200px;
    margin: 10px 20px;
}
.footer .column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.footer .column p,
.footer .column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    line-height: 1.6;
}
.footer .column a:hover {
    text-decoration: underline;
}
.footer .column ul {
    list-style: none;
    padding: 0;
}
.footer .column ul li {
    margin-bottom: 10px;
}
.footer .social-media {
    display: flex;
    align-items: center;
}
.footer .social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgb(248, 248, 255);
    width: 100%;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.whatsapp-button a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .header img {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .nav {
        margin-right: 0;
    }
    .nav a {
        margin: 0 10px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px;
    }
    .header img {
        width: 150px;
    }
    .nav a {
        font-size: 14px;
        margin: 0 5px;
    }
    .footer .column {
        margin: 10px 0;
    }
    .footer .column h3 {
        font-size: 16px;
    }
    .footer .column p, .footer .column a {
        font-size: 12px;
    }
}

/* Product Detail Page */
.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #81818100;
    padding: 20px;
}
.product-title h1 {
    font-size: 32px;
    margin: 0;
}
.product-title p {
    font-size: 18px;
    color: #666;
    margin: 5px 0 0;
}
.product-image img {
    max-width: 100%;
    height: auto;
}
.product-navigation {
    display: flex;
    justify-content: flex-start;
    background-color: #f9f5f5;
    padding: 10px 20px;
}
.product-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.product-navigation li {
    margin-right: 20px;
}
.product-navigation a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}
.product-navigation a:hover, .product-navigation a:focus, .product-navigation a:active {
    border-bottom: 2px solid #333;
}
.features-section {
    padding: 20px;
    background-color: #ffffff;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
}

.feature-item {
    width: 30%;
    margin: 10px;
    text-align: center;
}

.feature-item img {
    max-width: 100%;
    height: auto;
}

.feature-item h3 {
    font-size: 20px;
    margin: 10px 0 5px;
}

.feature-item p {
    font-size: 16px;
    color: #666;
}
.product-features {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.product-section {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-image {
    flex: 1;
    text-align: center;
}
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.product-description {
    flex: 2;
    padding: 0 20px;
}
.product-description h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.product-description p {
    font-size: 1em;
    line-height: 1.6;
}


.specs-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.specs-section h2 {
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.specs-table th {
    background-color: #f2f2f2;
}

.note {
    margin-top: 20px;
    font-style: italic;
    color: #555;
}
/*ini buat button cart*/
.cart-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}
.cart-button-container form {
    display: inline-block;
}
#addToCartBtn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
#addToCartBtn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
/* Transaction Page */
.transaction-section {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.transaction-header h1 {
    font-size: 24px;
    font-weight: bold;
}
.transaction-header p {
    font-size: 24px;
    font-weight: bold;
    color: #0040ff;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.btn-primary {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.payment-methods {
    margin-top: 20px;
}
.payment-methods h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.payment-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.payment-options input {
    display: none;
}
.payment-options img {
    width: 60px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    transition: border-color 0.3s;
}
.payment-options input:checked + img {
    border-color: #00aaff;
}

/* ini untuk onlineshop */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
}
.card img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.card h2 {
    margin: 0;
    font-size: 18px;
    color: #333;
}
.card p {
    color: #666;
    font-size: 14px;
}
.card a {
    text-decoration: none;
    color: inherit;
}

/* Style the tab */

div.tab {
    float: left;
    padding: 2rem 0;
    border-right: 1px solid #e1e3e6;
    width: 20%;
    background-color: #edeff2;
}


/* Style the buttons inside the tab */

div.tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 0.5rem 1rem;
    width: 100%;
    border: 0;
    outline: none;
    text-align: right;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #121212;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    line-height: 1;
    text-transform: capitalize;
}


/* Change background color of buttons on hover */

div.tab button:hover,
div.tab button.active {
    background-color: #ffffff;
    border-right: 0 solid #e1e3e6;
    border-bottom: 1px solid #e1e3e6;
    border-left: 0 solid #e1e3e6;
}

div.tab button:hover {
    border-top: 0;
}


/* Style the tab content */

.tabcontent {
    float: left;
    padding: 0 1rem;
    display: none;
    width: 80%;
    border-left: none;
}

.tabcontent.active {
    display: block;
}

.header .navbar-nav .has-submenu.menu-large ul li {
    background: url(images/menubg.jpg) repeat-y center center #ffffff !important;
}

.tab-details {
    padding: 0;
}

.tabcontent {
    border-left: medium none;
    display: none;
    float: left;
    padding: 2rem 1.5rem 0;
    width: 80%;
}


/* SECTIONS
**************************************/

.section {
    padding: 4rem 0;
    display: block;
    position: relative;
    background-color: #ffffff;
}

.section.lb {
    background-color: #edeff2;
}

.section.lb .single-post-media {
    margin-bottom: 0;
}

.embed-responsive-item {
    padding: 0.4rem !important;
    display: block;
    background-color: #fff;
}

.first-section {
    padding: 0;
    border-bottom: 0;
}

.first-section .container-fluid {
    padding: 0 3px;
}

.section-title h3 {
    display: block;
    margin: 0 0 1.5rem;
    padding: 0;
    line-height: 1;
}

.section-title h3 a {
    border-radius: 3px;
    color: #fff !important;
    font-size: 16px;
    line-height: 1;
    padding: 0.1rem 1.3rem;
}

.lightbg {
    background-color: #f8e1f8;
}

.nopad {
    padding: 0 !important;
    margin: 0 !important;
}

.nopad img {
    width: 100%;
}

.item-h2,
.item-h1 {
    height: 100% !important;
    height: auto !important;
}

.pitem {
    padding: 1rem !important;
}

.pitem img {
    width: 100%;
}

.isotope-item {
    z-index: 2;
    padding: 0;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.isotope,
.isotope .isotope-item {
    /* change duration value to whatever you like */
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

.portfolio .blog-meta span {
    border-radius: 3px;
}

.portfolio .blog-meta small::after,
.portfolio .blog-meta small a {
    color: #a3a5a8 !important;
    letter-spacing: 0.1rem;
}

.portfolio .blog-meta span a {
    color: #fff !important;
    line-height: 1;
    padding: 0.2rem 1rem;
    font-size: 12px;
    margin: 1rem 0 0;
    display: inline-block;
}

.portfolio .blog-meta h4 {
    margin: 0;
    font-size: 20px;
    padding: 0.4rem 0 0.2rem;
}

.center-side,
.left-side,
.right-side {
    float: left;
    width: 33.33333%;
}

.post-media img,
.masonry-box img {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.post-media:hover img,
.masonry-box:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.masonry-box img,
.masonry-box {
    width: 100%;
}

.masonry-box {
    border: 0.34rem solid #fff;
}

.small-box {
    width: 50%;
    float: left;
}

.masonry-box .blog-meta h4 {
    padding: 0.2rem 0;
}

.masonry-box .blog-meta span {
    background-color: #111111;
    border-radius: 3px;
    font-size: 12px;
    padding: 0.1rem 1rem;
}





/* PAGES
**************************************/

.notfound h2 {
    font-family: Comic Sans MS;
    font-size: 140px;
    padding: 0 0 1.7rem;
    margin: 0;
    line-height: 1;
    font-weight: bold;
}

.notfound h3 {
    font-size: 40px;
    padding: 0 0 0.6rem;
    margin: 0;
}

.notfound p {
    padding: 1rem 0 1.4rem;
    margin-bottom: 0;
}

.sitemap-wrapper {
    margin-bottom: 2rem;
    position: relative;
    border: 1px dashed #dadada;
    padding: 2rem;
}

.sitemap-wrapper .year {
    position: absolute;
    padding: 0 1rem;
    background-color: #ffffff;
    top: -12px;
}

.sitemap-text {
    margin: 1rem 0;
    font-weight: 500;
}

.sitemap-wrapper small {
    display: block;
    font-size: 11px;
    padding: 0;
    margin: 0 0 0.5rem;
    line-height: 1;
    text-transform: uppercase;
}

.breadcrumb {
    background-color: transparent;
    border-radius: 0;
    list-style: outside none none;
    margin-bottom: 0;
    text-align: right;
    padding: 0;
}

.breadcrumb-item {
    float: none;
    font-size: 12px;
    display: inline-block;
}

.page-link {
    background-color: #edeff2 !important;
    border: 0 dashed #e2e2e2;
    border-radius: 0;
    color: #a3a5a8 !important;
    display: block;
    font-size: 14px;
    line-height: 1;
    margin-left: 6px;
    padding: 0.8rem 0.8rem;
    position: relative;
    text-transform: capitalize;
}

.page-link:hover,
.page-link:focus {
    color: #111 !important;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-radius: 0;
}

.page-item:last-child .page-link {
    border-radius: 0;
}

.page-title {
    padding: 3rem 0;
    background-color: #edeff2;
}

.page-title small {
    color: #a3a5a8;
    display: inline-block;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0;
    margin-top: -1px;
    padding-bottom: 0;
    padding-left: 0.5rem;
    vertical-align: middle;
}

.page-title i {
    border-radius: 40px;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    margin-right: 0.3rem;
    margin-top: -0.4rem;
    text-align: center;
    vertical-align: middle;
    width: 40px;
}

.page-title h2 {
    font-size: 24px;
    line-height: 1;
    padding: 0;
    margin: 0;
}


/* BLOG
**************************************/

.carousel-indicators li {
    max-width: 10px;
    height: 10px;
}

.tag-cloud-single span {
    background: #ddd none repeat scroll 0 0;
    border-radius: 3px;
    color: #ffffff;
    display: inline-block !important;
    margin-right: 0.5rem !important;
    padding: 0 1rem;
}

.post-sharing {
    display: block;
    width: 100%;
    position: relative;
    margin: 1rem 0 0;
}

.gp-button.btn-primary:hover,
.gp-button.btn-primary:focus,
.gp-button.btn-primary {
    border-color: #DA5333 !important;
    background-color: #DA5333 !important;
}

.fb-button.btn-primary:focus,
.fb-button.btn-primary:hover,
.fb-button.btn-primary {
    background-color: #3B5998 !important;
    border-color: #3B5998 !important;
}

.tw-button.btn-primary:hover,
.tw-button.btn-primary:focus,
.tw-button.btn-primary {
    background-color: #00B6F1 !important;
    border-color: #00B6F1 !important;
}

.tw-button i,
.fb-button i {
    margin-right: 0.5rem;
}

.post-sharing .btn {
    padding: 0.3rem 1.6rem;
    border-radius: 3px;
    color: #ffffff !important;
}

.post-sharing .btn:hover {
    opacity: 0.9;
}

.gp-button {
    padding: 0.8rem 1rem !important;
}

.post-sharing span,
.post-sharing li {
    display: inline-block !important;
}

.single-post-media {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.single-post-media img {
    width: 100%;
}

.blog-title-area {
    display: block;
    position: relative;
    padding: 0;
    margin-bottom: 3rem;
}

.blog-title-area .breadcrumb {
    float: none;
    text-align: left;
    padding: 0;
    color: #a3a5a8;
    margin: 0;
}

.blog-title-area.text-center .breadcrumb {
    text-align: center;
}

.blog-title-area .blog-meta a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-title-area .breadcrumb-item.active,
.blog-title-area .breadcrumb-item + .breadcrumb-item::before,
.blog-title-area .blog-meta small,
.blog-title-area a {
    color: #a3a5a8;
}

.blog-title-area span {
    margin: 0.5rem 0;
    display: block;
}

.blog-title-area span a {
    padding: 0 1rem;
    color: #ffffff !important;
    border-radius: 3px;
}

.blog-title-area h3 {
    font-size: 41px;
    line-height: 50px;
    margin-bottom: 7px;
    margin-top: 0;
    overflow-wrap: break-word;
}

.user_name {
    font-size: 16px;
    font-weight: 500;
}

.comments-list p {
    margin-bottom: 1rem
}

.tag-cloud-single a,
.comments-list .media-right,
.comments-list small {
    color: #999 !important;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 5px;
    padding-left: 10px;
    text-transform: uppercase;
}

.comments-list .media {
    padding: 1rem;
    margin-bottom: 15px;
}

.media-body .btn-primary {
    padding: 5px 15px !important;
    font-size: 11px !important;
}

.last-child {
    margin-bottom: 0 !important;
}

.comments-list img {
    max-width: 80px;
    margin-right: 30px;
}

.prevnextpost .float-right {
    margin-left: 1rem;
}

.prevnextpost .w-100 {
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.prevnextpost .float-left {
    margin-right: 1rem;
}

.authorbox a {
    font-weight: bold;
}

.authorbox p {
    font-style: italic;
    margin-bottom: 1rem;
}

.small-title {
    background: #edeff2 none repeat scroll 0 0;
    font-size: 16px;
    left: 5%;
    line-height: 1;
    margin: 0;
    padding: 0.6rem 1.5rem;
    position: absolute;
    text-align: center;
    top: -18px;
}

.custombox {
    position: relative;
    padding: 3rem 2rem;
    border: 1px dashed #dadada;
}

.pp {
    padding-left: 5%;
    padding-right: 5%;
}

.pp .float-left {
    margin: 0 2rem 1rem -3rem;
}

.pp a {
    font-weight: bold;
}

.img-fullwidth {
    width: 100%;
    margin-bottom: 2rem;
}

.check {
    padding-bottom: 0;
    margin-bottom: 25px;
    list-style: none
}

.check li:before {
    font-family: FontAwesome;
    content: "\f105";
    padding-right: 0.5rem;
    color: #111111;
}

.page-wrapper .banner-spot {
    padding: 0.4rem;
    background-image: none;
}

.banner-spot {
    background: #edeff2 url("images/ads-bg.png") no-repeat scroll center right / auto 100%;
    clear: both;
    display: block;
    height: auto;
    margin: 0 auto;
    padding: 15px;
    position: relative;
}

.banner-img img {
    margin: auto;
    text-align: center;
    max-width: 768px;
    float: none;
    width: 100%;
    display: block;
}

.blog-meta h4 {
    padding: 1rem 0 0.5rem;
    margin: 0;
    font-size: 21px;
}

.blog-meta.big-meta h4 {
    padding: 1rem 0 0.6rem;
    margin: 0;
    font-size: 28px;
}

.blog-meta.big-meta p {
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.blog-meta small {
    font-size: 11px;
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #111111;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 0.5rem;
}

.blog-meta small:after {
    content: "/";
    padding-left: 1rem;
}

.blog-meta small:last-child:after {
    content: ""
}

hr.invis {
    border: 0;
    margin: 2rem 0;
}

hr.invis1 {
    border: 0;
    margin: 4rem 0;
}

hr.invis2 {
    border: 0;
    margin: 6rem 0;
}

hr.invis3 {
    border: 0;
    margin: 0;
}

.post-media {
    position: relative;
    overflow: hidden;
}

.shadoweffect {
    position: absolute;
    top: 0;
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 30%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 30%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 30%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000', GradientType=1);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

.shadow-desc {
    position: absolute;
    bottom: 0;
    padding: 1rem 1.5rem;
}

.shadow-desc .blog-meta small::after,
.shadow-desc .blog-meta a,
.shadow-desc .blog-meta h4 a {
    color: #ffffff !important;
}

.small-box .shadow-desc h4 {
    font-size: 16px;
    line-height: 1.3;
}

.small-box .shadow-desc {
    padding: 1rem;
}

.hovereffect {
    position: absolute;
    top: 0;
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    zoom: 1;
    filter: alpha(opacity=0);
    opacity: 0.5;
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 50%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 50%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 50%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000', GradientType=1);
}

.post-media:hover .hovereffect span::before,
.post-media:hover .hovereffect {
    visibility: visible;
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

.hovereffect span::before {
    width: 90px;
    text-align: center;
    left: 0;
    right: 0;
    top: 45%;
    margin: -2rem auto;
    visibility: hidden;
    position: absolute;
    height: 90px;
    display: block;
    content: url(images/hover.png);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    zoom: 1;
    filter: alpha(opacity=0);
    opacity: 0;
}

.hovereffect span.videohover::before {
    content: url(images/videohover.png);
}

.blog-list .blog-meta.big-meta h4 {
    margin-left: -20%;
    margin-top: 1rem;
    background-color: #ffffff;
    padding: 1rem 1.5rem 1rem;
}

.blog-custom-build .blog-meta {
    margin: -4rem 3rem 0;
    z-index: 11;
    padding: 2rem 2rem;
    position: relative;
    background-color: #ffffff;
    border-radius: 3px 3px 0 0;
    border-bottom: 1px solid #edeff2;
}

.blog-custom-build .blog-meta.big-meta h4 {
    font-size: 28px;
    margin: 0;
    padding: 0 0 1rem;
}

.blog-custom-build .post-sharing .btn {
    padding: 0.7rem 1rem !important;
}

.blog-custom-build .post-sharing {
    margin: 0 0 1.5rem;
    padding: 0;
}

.blog-grid-system .blog-meta.big-meta h4 {
    font-size: 21px;
}

.blog-video-system .col-md-12,
.blog-grid-system .col-md-6 {
    margin-bottom: 3rem;
}

.blog-video-system .blog-meta.big-meta h4 {
    padding: 1rem 0;
    font-size: 24px;
}

.blog-video-system .btn {
    margin-top: 1rem;
}


/* WIDGETS
**************************************/

.sidebar .widget {
    position: relative;
    display: block;
    margin-bottom: 3rem;
}

.sidebar .banner-spot {
    background-image: none;
    padding: 5px;
}

.sidebar .instagram-wrapper a {
    width: 33.3333%;
    margin: 0;
    float: left;
    border-right: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
}

.wb {
    background-color: #ffffff;
    border-top: 1px dashed #dadada;
}

.form-wrapper h4 {
    margin-bottom: 1.5rem;
}

.form-wrapper .form-control {
    background: #fff none repeat scroll 0 0;
    border: 1px dashed #dadada;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.3px;
    margin-bottom: 1.4rem;
    min-height: 50px;
    text-transform: none;
}

.form-wrapper .btn i {
    padding-left: 0.5rem;
}

.form-wrapper textarea {
    min-height: 120px !important;
    padding-top: 1rem
}

.search-form .form-control {
    border-radius: 0;
    margin-bottom: 1.4rem;
    border: 1px solid #edeff2;
    font-size: 12px;
    min-height: 45px;
    text-transform: none;
    font-weight: 400;
}

.search-form .form-control {
    margin: 0;
    min-width: 240px;
    border-right: 0;
}

.search-form .btn:hover,
.search-form .btn:focus,
.search-form .btn {
    padding: 0;
    border-color: #edeff2 !important;
    height: 45px;
    position: absolute;
    border-radius: 0 !important;
    background-color: #edeff2 !important;
    right: 0;
    color: #a3a5a8 !important;
    width: 45px;
    line-height: 45px;
    margin-left: 0
}

.sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar .blog-list-widget img {
    width: 55px;
    padding: 0;
}

.sidebar .blog-list-widget .mb-1 {
    font-size: 15px;
}

.sidebar a {
    color: rgba(0, 0, 0, 0.6);
}

.sidebar .widget-title {
    display: block;
    font-size: 18px;
    margin: 0 0 2rem;
    padding: 0;
    line-height: 1;
}

.footer-text img {
    max-width: 290px;
}

.footer-text p {
    margin-bottom: 0;
    padding: 1rem 0 1.2rem;
}

.blog-list-widget img {
    background: #fff none repeat scroll 0 0;
    margin-right: 15px;
    max-width: 80px;
    padding: 4px;
}

.blog-list-widget .list-group-item {
    padding: 0;
    border: 0;
    margin: 0;
    background-color: transparent;
}

.blog-list-widget .w-100 {
    margin-bottom: 1rem;
    display: block;
}

.blog-list-widget .w-100.last-item {
    margin-bottom: 0;
}

.blog-list-widget .mb-1 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0rem !important;
}

.blog-list-widget small {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newsletter-widget h4 {
    font-size: 2.4rem;
    padding: 0;
    margin: 0 0 1.5rem;
}

.newsletter-widget p {
    color: rgba(0, 0, 0, 0.4);
    font-size: 18px;
    padding: 0;
    margin: 0 0 2rem;
}

.newsletter-widget .form-inline {
    display: block;
}

.newsletter-widget .form-inline .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #dbdde0;
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    font-size: 14px;
    height: 56px;
    padding-left: 1.5rem;
    line-height: 1;
    letter-spacing: 0.3px;
    vertical-align: middle;
    width: 400px;
}

.card-block {
    -moz-box-flex: 1;
    background: #202020 none repeat scroll 0 0;
    padding: 1.25rem 3rem;
    border-radius: 0 !important;
}

.top-search .btn:hover,
.top-search .btn:focus,
.top-search .btn {
    position: absolute;
    right: 4%;
    border: 0 !important;
    border-left: 1px solid #555555 !important;
    color: #555555 !important;
    font-size: 24px;
    background-color: transparent !important;
    height: 54px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.top-search .newsletter-widget .form-inline .form-control {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    color: #555555;
    font-size: 24px;
    width: 100%;
}

.form-wrapper .newsletter-widget .form-inline .form-control::-webkit-input-placeholder {
    color: #a2abb1;
    opacity: 1;
}

.form-wrapper .form-control::-moz-placeholder {
    color: #a2abb1;
    opacity: 1;
}

.form-wrapper .form-control:-ms-input-placeholder {
    color: #a2abb1;
    opacity: 1;
}

.form-wrapper .form-control::placeholder {
    color: #a2abb1;
    opacity: 1;
}

.top-search .form-inline .form-control::-webkit-input-placeholder {
    color: #555555;
    opacity: 1;
}

.top-search .newsletter-widget .form-inline .form-control::-moz-placeholder {
    color: #555555;
    opacity: 1;
}

.top-search .newsletter-widget .form-inline .form-control:-ms-input-placeholder {
    color: #555555;
    opacity: 1;
}

.top-search .newsletter-widget .form-inline .form-control::placeholder {
    color: #555555;
    opacity: 1;
}

.newsletter-widget .form-inline .form-control::-webkit-input-placeholder {
    color: #a2abb1;
    opacity: 1;
}

.newsletter-widget .form-inline .form-control::-moz-placeholder {
    color: #a2abb1;
    opacity: 1;
}

.newsletter-widget .form-inline .form-control:-ms-input-placeholder {
    color: #a2abb1;
    opacity: 1;
}

.newsletter-widget .form-inline .form-control::placeholder {
    color: #a2abb1;
    opacity: 1;
}

.newsletter-widget .btn {
    height: 54px;
    border-radius: 0;
    border: 0;
}

.newsletter-widget .btn i {
    padding-left: 0.5rem
}

.btn {
    background-color: #111111;
    border: 0 none;
    border-radius: 0;
    font-size: 14px;
    font-weight: bold;
    padding: 0.8rem 2rem;
    text-transform: none;
}

.link-widget li {
    padding: 0.4rem 0.2rem 0.6rem;
    text-transform: capitalize;
    line-height: 1;
    font-weight: 500;
    position: relative;
    margin: 0;
    border-bottom: 1px dashed #dadada;
}

.link-widget li:last-child {
    border-bottom: 0 dashed #dadada;
}

.link-widget li span {
    position: absolute;
    right: 0;
}

.loader {
    display: block;
    margin: 20px auto 0;
    vertical-align: middle;
}

#preloader {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 11000;
    position: fixed;
    display: block
}

.preloader {
    position: absolute;
    margin: 0 auto;
    left: 1%;
    right: 1%;
    top: 47%;
    width: 65px;
    height: 65px;
    background: center center no-repeat none;
    background-size: 65px 65px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%
}
