/**
 * Header and Footer Styles
 * Standalone CSS for integration
 * 
 * IMPORTANT: Make sure to copy the font files to integrations/fonts/ folder
 * Required fonts:
 * - AkkuratLLWeb-Regular.woff / .woff2
 * - AkkuratLLWeb-Bold.woff / .woff2
 * - AkkuratLLWeb-Italic.woff / .woff2
 * - AkkuratLLWeb-BoldItalic.woff / .woff2
 * - GT-Pressura-Mono-Regular.woff2
 */

/* ============================================
   FONT FACE DECLARATIONS
   ============================================ */

/* Akkurat LL - Regular */
@font-face {
    font-family: "Akkurat LL";
    src: url('../fonts/AkkuratLLWeb-Regular.woff2') format('woff2'),
         url('../fonts/AkkuratLLWeb-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Akkurat LL - Italic */
@font-face {
    font-family: "Akkurat LL";
    src: url('../fonts/AkkuratLLWeb-Italic.woff2') format('woff2'),
         url('../fonts/AkkuratLLWeb-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Akkurat LL - Bold */
@font-face {
    font-family: "Akkurat LL";
    src: url('../fonts/AkkuratLLWeb-Bold.woff2') format('woff2'),
         url('../fonts/AkkuratLLWeb-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Akkurat LL - Bold Italic */
@font-face {
    font-family: "Akkurat LL";
    src: url('../fonts/AkkuratLLWeb-BoldItalic.woff2') format('woff2'),
         url('../fonts/AkkuratLLWeb-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* GT Pressura Mono - Regular */
@font-face {
    font-family: "GT Pressura Mono";
    src: url('../fonts/GT-Pressura-Mono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    --header_size: 82px;
    --grid_width: 1240px;
    --white: #fff;
    --blue: #006EFF;
    --black: #1F1F1F;
    --mustard: #DCAE46;
    --orange: #FF5401;
    --paleblue: #BEDFE8;
}

@media only screen and (max-width: 1279px) {
    :root {
        --header_size: 82px;
    }
}

/* ============================================
   HEADER STYLES
   ============================================ */
.snc-header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 11;
    height: var(--header_size);
    border-bottom: 1px solid var(--paleblue);
    background: var(--white);
    transition: all 0.3s ease;
}

.snc-header .logo {
    position: relative;
    z-index: 105;
    padding: 16px 0 0 0;
}

.snc-header .logo svg {
    width: 81px;
    height: 50px;
    transition: all 0.2s ease;
}

.snc-header .logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--black);
}

.snc-header .columns {
    position: static;
    display: flex;
    align-items: center;
    gap: 72px;
    max-width: var(--grid_width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Menu */
.snc-header .main-menu {
    flex: 1;
}

.snc-header .main-menu > ul {
    display: flex;
    gap: 40px;
    width: max-content;
    list-style: none;
    margin: 0;
    padding: 0;
}

.snc-header .main-menu > ul > li {
    display: block;
    list-style: none;
}

.snc-header .main-menu > ul > li > a {
    color: var(--black);
    font-family: "GT Pressura Mono", monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.176px;
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
    height: var(--header_size);
    padding: 27px 0 0 0;
}

.snc-header .main-menu > ul > li > a:before {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: all 0.2s ease;
}

.snc-header .main-menu > ul > li > a:after {
    content: "";
    position: absolute;
    bottom: 24px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: all 0.2s ease;
}

.snc-header .main-menu > ul > li:hover > a:before,
.snc-header .main-menu > ul > li:hover > a:after,
.snc-header .main-menu > ul > li.active > a:before,
.snc-header .main-menu > ul > li.active > a:after {
    width: 100%;
}

.snc-header .main-menu > ul > li:hover > .mega-menu {
    opacity: 1;
    pointer-events: all;
}

.snc-header .main-menu > ul > li > .mega-menu {
    position: absolute;
    top: var(--header_size);
    left: 0;
    width: 100%;
    padding: 48px 0 60px 0;
    background-color: var(--black);
    transition: all 0.2s ease;
    opacity: 0;
    z-index: 9;
    pointer-events: none;
}

/* Mega Menu Grid Layout */
.snc-header .main-menu > ul > li > .mega-menu .grid {
    position: relative;
    max-width: var(--grid_width);
    margin: 0 auto;
    padding: 16px 20px 0 20px;
    border-top: 1px solid var(--white);
}

.snc-header .main-menu > ul > li > .mega-menu .grid.columns {
    display: flex;
    gap: 20px;
}

/* Mega Menu Description */
.snc-header .main-menu > ul > li > .mega-menu .desc {
    display: block;
    padding: 4px 0 0 0;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: var(--white);
    font-family: "Akkurat LL", sans-serif;
}

/* Mega Menu Sub Menu Box */
.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box {
    flex: 1;
}

.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    column-gap: 80px;
    max-height: 320px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mega Menu Sub Menu Items */
.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu li {
    position: relative;
    margin: 0;
    list-style: none;
}

.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu li .icon {
    position: absolute;
    left: 0;
    top: 12px;
    width: 36px;
    height: 36px;
    margin: 0 20px 10px 0;
}

.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu li a {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 12px 0 12px 52px;
    border-bottom: 1px solid var(--white);
    background: url('../images/arrow1.svg') no-repeat right center;
    font-family: "Akkurat LL", sans-serif;
}

.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu li a .desc {
    font-weight: 400;
    max-width: 250px;
    padding: 8px 20px 0 0;
    font-size: 18px;
}

/* Mega Menu Nested Sub Menu Items */
.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu li:has(ul) > a {
    border: 0 none;
}

.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu li:has(ul) li:first-of-type a {
    border-top: 1px solid var(--white);
}

.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu li li {
    padding: 0 0 0 52px;
}

.snc-header .main-menu > ul > li > .mega-menu .sub-menu-box > ul.sub-menu li li a {
    font-weight: 400;
    padding-left: 0;
}

/* Mega Menu Banner Box */
.snc-header .main-menu > ul > li > .mega-menu .banner-box {
    margin: 8px 0 0 0;
}

.snc-header .main-menu > ul > li > .mega-menu .banner-box img {
    width: 100%;
    height: auto;
}

/* Mega Menu Button */
.snc-header .main-menu > ul > li > .mega-menu .btn {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    margin: 12px 0 0 0;
    font-family: "Akkurat LL", sans-serif;
}

.snc-header .main-menu > ul > li > .mega-menu .btn:after {
    content: "";
    position: relative;
    top: 2px;
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 15px;
    margin: 0 0 0 8px;
    background: url('../images/arrow1.svg') no-repeat;
}

/* Special Mega Menu Styles */
.snc-header .main-menu > ul > li.about > .mega-menu {
    height: auto;
}

.snc-header .main-menu > ul > li.about > .mega-menu .sub-menu-box .sub-menu {
    max-height: 600px;
    flex-wrap: nowrap;
}

/* No Banner Mega Menu Variants */
.snc-header .main-menu > ul > li.no-banner.full > .mega-menu .sub-menu-box > ul.sub-menu {
    display: flex;
    justify-content: center;
}

.snc-header .main-menu > ul > li.no-banner > .mega-menu .sub-menu-box > ul.sub-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
}

.snc-header .main-menu > ul > li.no-banner > .mega-menu .sub-menu-box > ul.sub-menu li.left {
    grid-column: 1;
}

.snc-header .main-menu > ul > li.no-banner > .mega-menu .sub-menu-box > ul.sub-menu li.right {
    grid-column: 2;
}

/* Top Nav */
.snc-header .top-nav {
    padding: 18px 0 0 0;
}

.snc-header .top-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.snc-header .top-nav ul li {
    list-style: none;
}

.snc-header .top-nav ul li a {
    color: var(--blue);
    text-decoration: none;
    border: 1px solid var(--blue);
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.snc-header .top-nav ul li a:hover {
    background-color: var(--blue);
    color: var(--white);
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    position: fixed;
    top: 26px;
    right: 26px;
    z-index: 105;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: none;
    transition: transform 1.2s cubic-bezier(.13, .76, .85, 1.01),
                opacity 1.2s cubic-bezier(.13, .76, .85, 1.01);
}

.mobile-menu-icon span {
    display: block;
    position: absolute;
    right: 0;
    height: 2px;
    width: 24px;
    background-color: var(--black);
    transition: 0.25s ease-in-out;
}

.mobile-menu-icon span:nth-child(1) {
    top: 4px;
}

.mobile-menu-icon span:nth-child(2),
.mobile-menu-icon span:nth-child(3) {
    top: 12px;
}

.mobile-menu-icon span:nth-child(4) {
    top: 20px;
}

.mobile-menu-active .mobile-menu-icon span:nth-child(1),
.mobile-menu-active .mobile-menu-icon span:nth-child(4) {
    width: 0;
}

.mobile-menu-active .mobile-menu-icon span:nth-child(2) {
    width: 26px;
    transform: rotate(45deg);
}

.mobile-menu-active .mobile-menu-icon span:nth-child(3) {
    width: 26px;
    transform: rotate(-45deg);
}

/* Mobile Menu Dimmer */
.mobile-menu-dimmer {
    position: fixed;
    top: -100vh;
    left: -100vw;
    height: 100vh;
    width: 100vw;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: #000;
    pointer-events: none;
}

.mobile-menu-active .mobile-menu-dimmer {
    top: var(--header_size);
    left: 0;
    opacity: 1;
    pointer-events: all;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: var(--header_size);
    left: 0;
    right: 0;
    display: block !important;
    height: calc(100vh - var(--header_size));
    z-index: 101;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    /* overflow-y: auto; */
}

.mobile-menu-active .mobile-menu-drawer {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-drawer nav.mobile-main-menu {
    position: relative;
    width: 100%;
    padding: 40px 24px;
    background: #000;
}

.mobile-menu-drawer nav.mobile-main-menu > ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li {
    display: block;
    list-style: none;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > a {
    color: var(--white);
    font-family: "Akkurat LL", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: capitalize;
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
    padding: 17px 40px 17px 0;
    border-bottom: 1px solid var(--white);
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > a:has(.icon) {
    padding-left: 56px;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 16px;
    width: 40px;
    height: 40px;
    background: url('../images/arrow10.svg') no-repeat center;
    transition: all 0.2s ease;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li.active > a:before {
    transform: rotate(-90deg);
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > ul {
    display: none;
    flex-direction: column;
    gap: 28px;
    padding: 0 0 0 40px;
    border-bottom: 1px solid var(--white);
    list-style: none;
    margin: 0;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li.active > ul {
    display: flex;
}

/* Mobile Menu - Menu Item Icons and Descriptions */
.mobile-menu-drawer nav.mobile-main-menu > ul > li > a .icon {
    position: absolute;
    left: 0;
    top: 12px;
    width: 36px;
    height: 36px;
    margin: 0 20px 10px 0;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > a .desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    display: none; /* Hidden in top-level menu items (matching original) */
    padding: 8px 0 0 0;
    font-family: "Akkurat LL", sans-serif;
}

/* Mobile Menu - Banner */
.mobile-menu-drawer nav.mobile-main-menu > ul > li .banner {
    display: none;
    margin: 8px 0 0 0;
    padding: 0 0 0 40px;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li .banner img {
    width: 100%;
    height: auto;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li .banner .btn {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    margin: 12px 0 0 0;
    font-family: "Akkurat LL", sans-serif;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li .banner .btn:after {
    content: "";
    position: relative;
    top: 2px;
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 15px;
    margin: 0 0 0 8px;
    background: url('../images/arrow1.svg') no-repeat;
}

/* Mobile Menu - Submenu Items with Icons */
.mobile-menu-drawer nav.mobile-main-menu > ul > li > ul.sub-menu li {
    position: relative;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > ul.sub-menu li .icon {
    position: absolute;
    left: 0;
    top: 8px;
    width: 36px;
    height: 36px;
    margin: 0 20px 10px 0;
}

.mobile-menu-drawer nav.top-nav{
    display: block;
    position: absolute;
    right: 65px;
    top: -80px;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > ul.sub-menu li a {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 12px 0 12px 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: url('../images/arrow1.svg') no-repeat right center;
    font-family: "Akkurat LL", sans-serif;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > ul.sub-menu li a .desc {
    display: block;
    font-weight: 400;
    font-size: 18px;
    padding: 8px 0 0 0;
}

.mobile-menu-drawer nav.mobile-main-menu > ul > li > ul.sub-menu li:last-of-type a {
    border: 0 none;
}

/* Disable scrolling when menu is open */
body.disable-scrolling,
html.disable-scrolling {
    overflow: hidden;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.snc-footer {
    padding: 80px 0 80px 0;
    background: var(--black);
    color: var(--white);
}

.snc-footer .grid {
    max-width: var(--grid_width);
    margin: 0 auto;
    padding: 0 20px;
}

.snc-footer .columns {
    display: flex;
    gap: 20px;
}

.snc-footer .footer-links a,
.snc-footer .contact a,
.snc-footer .bottom-line a,
.snc-footer .footer-links span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.snc-footer .footer-links span.orange,
.snc-footer .footer-links a.orange {
    color: var(--mustard);
}

.snc-footer .footer-links a:hover,
.snc-footer .contact a:hover,
.snc-footer .bottom-line a:hover {
    color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid var(--white);
}

.snc-footer .footer-links a.orange:hover {
    color: var(--mustard);
    border-bottom: 1px solid var(--mustard);
}

.snc-footer a.btn {
    font-size: 32px;
    color: var(--white);
    text-decoration: none;
    position: relative;
    display: block;
    height: 72px;
    padding: 16px 0 0 0;
    border-top: 1px solid var(--white);
    transition: all 0.2s ease;
}

.snc-footer a.btn:before {
    content: "";
    position: absolute;
    right: 0;
    top: 16px;
    width: 40px;
    height: 40px;
    background: url('../images/arrow10.svg') no-repeat center;
    transition: all 0.2s ease;
}

.snc-footer a.btn:hover {
    background-color: var(--blue);
    padding: 16px 0 0 16px;
}

.snc-footer a.btn:hover:before {
    right: 16px;
    transform: rotate(-45deg);
}

.snc-footer .social {
    display: flex;
    gap: 130px;
    padding: 40px 0;
    border-top: 1px solid var(--white);
}

.snc-footer .social ul {
    flex: 1;
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.snc-footer .social ul svg,
.snc-footer .social ul img {
    width: 20px;
    height: 20px;
}

.snc-footer .footer-links {
    padding: 0 0 26px 0;
}

.snc-footer .footer-links > ul {
    display: flex;
    column-gap: 20px;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.snc-footer .footer-links > ul > li {
    width: calc(33% - 14px);
    list-style: none;
}

.snc-footer .footer-links > ul > li > ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.snc-footer .footer-links > ul > li > ul > li {
    width: 100%;
    margin: 0 0 19px 0;
}

.snc-footer .contact {
    color: var(--white);
    padding: 32px 0;
    border-top: 1px solid var(--white);
}

.snc-footer .contact p {
    display: inline-block;
    vertical-align: top;
    height: 40px;
    margin: 24px 0 0 0;
}

.snc-footer .contact .phone {
    padding: 8px 16px 0 0;
}

.snc-footer .contact .address,
.snc-footer .contact .email {
    padding: 8px 16px 0 16px;
    border-left: 1px solid var(--white);
}

.snc-footer .contact .title {
    font-size: 32px;
    color: var(--orange);
    margin: 0 0 16px 0;
}

.snc-footer .bottom-line {
    color: var(--white);
    gap: 0;
    padding: 32px 0 0 0;
    border-top: 1px solid var(--white);
    display: flex;
    justify-content: space-between;
}

.snc-footer .footer-legal ul {
    display: flex;
    column-gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.snc-footer .copyright {
    text-align: end;
}

/* Grid utilities */
.grid-3 {
    flex: 0 0 295px;
}

.grid-4 {
    flex: 0 0 400px;
}

.grid-5 {
    flex: 0 0 505px;
}

.grid-7 {
    flex: 0 0 715px;
}

.grid-8 {
    flex: 0 0 calc(66.666% - 14px);
}

/* Text utilities */
.text-18 {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Akkurat LL", sans-serif;
}

.text-32 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    font-family: "Akkurat LL", sans-serif;
}

.white {
    color: var(--white);
}

/* Responsive */
@media only screen and (max-width: 1279px) {
    .snc-header .logo {
        padding: 16px 0 0 24px;
    }
    
    .snc-header .main-menu,
    .snc-header .top-nav,
    .snc-header .main-menu > ul > li > .mega-menu {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    /* Grid utilities responsive - stack on mobile */
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-7 {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .text-32 {
        font-size: 18px;
        line-height: 28px;
    }
    
    .snc-footer {
        padding: 40px 24px;
    }
    
    .snc-footer .grid > .columns {
        flex-direction: column;
        order: 2;
    }
    
    .snc-footer .social {
        gap: 0;
    }
    
    .snc-footer .social ul {
        margin: 0 0 0 30px;
    }
    
    .snc-footer .footer-links {
        padding: 0;
    }
    
    .snc-footer .footer-links > ul {
        flex-direction: column;
        column-gap: 0;
    }
    
    .snc-footer .footer-links > ul > li {
        width: unset;
    }
    
    .snc-footer .contact {
        order: 1;
        padding: 40px 0 16px 0;
    }
    
    .snc-footer .contact p {
        display: block;
        height: auto;
        margin: 16px 0 0 0;
    }
    
    .snc-footer .contact .phone {
        padding: 8px 0 0 0;
    }
    
    .snc-footer .contact .address,
    .snc-footer .contact .email {
        padding: 0;
        border-left: 0 none;
    }
    
    .snc-footer .bottom-line {
        order: 3;
        padding: 40px 0 0 0;
        flex-direction: column;
    }
    
    .snc-footer .footer-legal ul {
        flex-direction: column;
        text-align: center;
        row-gap: 32px;
    }
    
    .snc-footer .copyright {
        text-align: center;
        padding: 32px 0 0 0;
    }
}

.mobile-menu-drawer nav.mobile-main-menu>ul>li.active a:before {
    rotate: -90deg;
}

@media only screen and (max-width: 768px) {
    .main-menu, .top-nav {
        display: none;
    }
    .top-nav ul {
        display: flex;
        gap: 20px;
        list-style-type: none;
        margin: 0;
    }
    .top-nav ul li a, .top-nav ul li a:active, .top-nav ul li a:link, .top-nav ul li a:visited {
        color: #006eff;
        border: 1px solid #006eff;
        background-color: rgba(0, 0, 0, 0);
    }
    .top-nav ul li a{
        font-family: "Akkurat LL";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 44px;
        text-transform: uppercase;
        letter-spacing: normal;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        overflow: hidden;
        display: inline-block;
        vertical-align: top;
        height: 44px;
        padding: 0 12px 0 12px;
        border: 0 none;
        transition: all .2s ease;
    }
}
