// main: style.scss /* Magnific Popup CSS */ //////////////////////// // Settings // //////////////////////// // overlay $mfp-overlay-color: #0b0b0b; // Color of overlay screen $mfp-overlay-opacity: 0.8; // Opacity of overlay screen $mfp-shadow: 0 0 8px rgba(0, 0, 0, 0.6); // Shadow on image or iframe // spacing $mfp-popup-padding-left: 8px; // Padding from left and from right side $mfp-popup-padding-left-mobile: 6px; // Same as above, but is applied when width of window is less than 800px $mfp-z-index-base: 1040; // Base z-index of popup // controls $mfp-include-arrows: true; // Include styles for nav arrows $mfp-controls-opacity: 0.65; // Opacity of controls $mfp-controls-color: #FFF; // Color of controls $mfp-controls-border-color: #3F3F3F; // Border color of controls $mfp-inner-close-icon-color: #333; // Color of close button when inside $mfp-controls-text-color: #CCC; // Color of preloader and "1 of X" indicator $mfp-controls-text-color-hover: #FFF; // Hover color of preloader and "1 of X" indicator $mfp-IE7support: true; // Very basic IE7 support // Iframe-type options $mfp-include-iframe-type: true; // Enable Iframe-type popups $mfp-iframe-padding-top: 40px; // Iframe padding top $mfp-iframe-background: #000; // Background color of iframes $mfp-iframe-max-width: 900px; // Maximum width of iframes $mfp-iframe-ratio: 9/16; // Ratio of iframe (9/16 = widescreen, 3/4 = standard, etc.) // Image-type options $mfp-include-image-type: true; // Enable Image-type popups $mfp-image-background: #444 !default; $mfp-image-padding-top: 40px; // Image padding top $mfp-image-padding-bottom: 40px; // Image padding bottom $mfp-include-mobile-layout-for-image: true; // Removes paddings from top and bottom // Image caption options $mfp-caption-title-color: #F3F3F3; // Caption title color $mfp-caption-subtitle-color: #BDBDBD; // Caption subtitle color // A11y $mfp-use-visuallyhidden: false; //////////////////////// // // Contents: // // 1. Default Settings // 2. General styles // - Transluscent overlay // - Containers, wrappers // - Cursors // - Helper classes // 3. Appearance // - Preloader & text that displays error messages // - CSS reset for buttons // - Close icon // - "1 of X" counter // - Navigation (left/right) arrows // - Iframe content type styles // - Image content type styles // - Media query where size of arrows is reduced // - IE7 support // //////////////////////// //////////////////////// // 1. Default Settings //////////////////////// $mfp-overlay-color: #0b0b0b !default; $mfp-overlay-opacity: 0.8 !default; $mfp-shadow: 0 0 8px rgba(0, 0, 0, 0.6) !default; // shadow on image or iframe $mfp-popup-padding-left: 8px !default; // Padding from left and from right side $mfp-popup-padding-left-mobile: 6px !default; // Same as above, but is applied when width of window is less than 800px $mfp-z-index-base: 1040 !default; // Base z-index of popup $mfp-include-arrows: true !default; // include styles for nav arrows $mfp-controls-opacity: 0.65 !default; $mfp-controls-color: #FFF !default; $mfp-controls-border-color: #3F3F3F !default; $mfp-inner-close-icon-color: #333 !default; $mfp-controls-text-color: #CCC !default; // Color of preloader and "1 of X" indicator $mfp-controls-text-color-hover: #FFF !default; $mfp-IE7support: true !default; // Very basic IE7 support // Iframe-type options $mfp-include-iframe-type: true !default; $mfp-iframe-padding-top: 40px !default; $mfp-iframe-background: #000 !default; $mfp-iframe-max-width: 900px !default; $mfp-iframe-ratio: 9/16 !default; // Image-type options $mfp-include-image-type: true !default; $mfp-image-background: #444 !default; $mfp-image-padding-top: 40px !default; $mfp-image-padding-bottom: 40px !default; $mfp-include-mobile-layout-for-image: true !default; // Removes paddings from top and bottom // Image caption options $mfp-caption-title-color: #F3F3F3 !default; $mfp-caption-subtitle-color: #BDBDBD !default; // A11y $mfp-use-visuallyhidden: false !default; // Hide content from browsers, but make it available for screen readers //////////////////////// // 2. General styles //////////////////////// // Transluscent overlay .mfp-bg { top: 0; left: 0; width: 100%; height: 100%; z-index: $mfp-z-index-base + 2; overflow: hidden; position: fixed; background: $mfp-overlay-color; opacity: $mfp-overlay-opacity; @if $mfp-IE7support { filter: unquote("alpha(opacity=#{$mfp-overlay-opacity*100})"); } } // Wrapper for popup .mfp-wrap { top: 0; left: 0; width: 100%; height: 100%; z-index: $mfp-z-index-base + 3; position: fixed; outline: none !important; -webkit-backface-visibility: hidden; // fixes webkit bug that can cause "false" scrollbar } // Root container .mfp-container { text-align: center; position: absolute; width: 100%; height: 100%; left: 0; top: 0; padding: 0 $mfp-popup-padding-left; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } // Vertical centerer helper .mfp-container { &:before { content: ''; display: inline-block; height: 100%; vertical-align: middle; } } // Remove vertical centering when popup has class `mfp-align-top` .mfp-align-top { .mfp-container { &:before { display: none; } } } // Popup content holder .mfp-content { position: relative; display: inline-block; vertical-align: middle; margin: 0 auto; text-align: left; z-index: $mfp-z-index-base + 5; } .mfp-inline-holder, .mfp-ajax-holder { .mfp-content { width: 100%; cursor: auto; } } // Cursors .mfp-ajax-cur { cursor: progress; } .mfp-zoom-out-cur { &, .mfp-image-holder .mfp-close { cursor: -moz-zoom-out; cursor: -webkit-zoom-out; cursor: zoom-out; } } .mfp-zoom { cursor: pointer; cursor: -webkit-zoom-in; cursor: -moz-zoom-in; cursor: zoom-in; } .mfp-auto-cursor { .mfp-content { cursor: auto; } } .mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter { -webkit-user-select: none; -moz-user-select: none; user-select: none; } // Hide the image during the loading .mfp-loading { &.mfp-figure { display: none; } } // Helper class that hides stuff @if $mfp-use-visuallyhidden { // From HTML5 Boilerplate https://github.com/h5bp/html5-boilerplate/blob/v4.2.0/doc/css.md#visuallyhidden .mfp-hide { border: 0 !important; clip: rect(0 0 0 0) !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; padding: 0 !important; position: absolute !important; width: 1px !important; } } @else { .mfp-hide { display: none !important; } } //////////////////////// // 3. Appearance //////////////////////// // Preloader and text that displays error messages .mfp-preloader { color: $mfp-controls-text-color; position: absolute; top: 50%; width: auto; text-align: center; margin-top: -0.8em; left: 8px; right: 8px; z-index: $mfp-z-index-base + 4; a { color: $mfp-controls-text-color; &:hover { color: $mfp-controls-text-color-hover; } } } // Hide preloader when content successfully loaded .mfp-s-ready { .mfp-preloader { display: none; } } // Hide content when it was not loaded .mfp-s-error { .mfp-content { display: none; } } // CSS-reset for buttons button { &.mfp-close, &.mfp-arrow { overflow: visible; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; display: block; outline: none; padding: 0; z-index: $mfp-z-index-base + 6; -webkit-box-shadow: none; box-shadow: none; } &::-moz-focus-inner { padding: 0; border: 0 } } // Close icon .mfp-close { width: 44px; height: 44px; line-height: 44px; position: absolute; right: 0; top: 0; text-decoration: none; text-align: center; opacity: $mfp-controls-opacity; @if $mfp-IE7support { filter: unquote("alpha(opacity=#{$mfp-controls-opacity*100})"); } padding: 0 0 18px 10px; color: $mfp-controls-color; font-style: normal; font-size: 28px; font-family: Arial, Baskerville, monospace; &:hover, &:focus { opacity: 1; @if $mfp-IE7support { filter: unquote("alpha(opacity=#{1*100})"); } } &:active { top: 1px; } } .mfp-close-btn-in { .mfp-close { color: $mfp-inner-close-icon-color; } } .mfp-image-holder, .mfp-iframe-holder { .mfp-close { color: $mfp-controls-color; right: -6px; text-align: right; padding-right: 6px; width: 100%; } } // "1 of X" counter .mfp-counter { position: absolute; top: 0; right: 0; color: $mfp-controls-text-color; font-size: 12px; line-height: 18px; white-space: nowrap; } // Navigation arrows @if $mfp-include-arrows { .mfp-arrow { position: absolute; opacity: $mfp-controls-opacity; @if $mfp-IE7support { filter: unquote("alpha(opacity=#{$mfp-controls-opacity*100})"); } margin: 0; top: 50%; margin-top: -55px; padding: 0; width: 90px; height: 110px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); &:active { margin-top: -54px; } &:hover, &:focus { opacity: 1; @if $mfp-IE7support { filter: unquote("alpha(opacity=#{1*100})"); } } &:before, &:after, .mfp-b, .mfp-a { content: ''; display: block; width: 0; height: 0; position: absolute; left: 0; top: 0; margin-top: 35px; margin-left: 35px; border: medium inset transparent; } &:after, .mfp-a { border-top-width: 13px; border-bottom-width: 13px; top: 8px; } &:before, .mfp-b { border-top-width: 21px; border-bottom-width: 21px; opacity: 0.7; } } .mfp-arrow-left { left: 0; &:after, .mfp-a { border-right: 17px solid $mfp-controls-color; margin-left: 31px; } &:before, .mfp-b { margin-left: 25px; border-right: 27px solid $mfp-controls-border-color; } } .mfp-arrow-right { right: 0; &:after, .mfp-a { border-left: 17px solid $mfp-controls-color; margin-left: 39px } &:before, .mfp-b { border-left: 27px solid $mfp-controls-border-color; } } } // Iframe content type @if $mfp-include-iframe-type { .mfp-iframe-holder { padding-top: $mfp-iframe-padding-top; padding-bottom: $mfp-iframe-padding-top; .mfp-content { line-height: 0; width: 100%; max-width: $mfp-iframe-max-width; } .mfp-close { top: -40px; } } .mfp-iframe-scaler { width: 100%; height: 0; overflow: hidden; padding-top: $mfp-iframe-ratio * 100%; iframe { position: absolute; display: block; top: 0; left: 0; width: 100%; height: 100%; box-shadow: $mfp-shadow; background: $mfp-iframe-background; } } } // Image content type @if $mfp-include-image-type { /* Main image in popup */ img { &.mfp-img { width: auto; max-width: 100%; height: auto; display: block; line-height: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: $mfp-image-padding-top 0 $mfp-image-padding-bottom; margin: 0 auto; } } /* The shadow behind the image */ .mfp-figure { line-height: 0; &:after { content: ''; position: absolute; left: 0; top: $mfp-image-padding-top; bottom: $mfp-image-padding-bottom; display: block; right: 0; width: auto; height: auto; z-index: -1; box-shadow: $mfp-shadow; background: $mfp-image-background; } small { color: $mfp-caption-subtitle-color; display: block; font-size: 12px; line-height: 14px; } figure { margin: 0; } } .mfp-bottom-bar { margin-top: -$mfp-image-padding-bottom + 4; position: absolute; top: 100%; left: 0; width: 100%; cursor: auto; } .mfp-title { text-align: left; line-height: 18px; color: $mfp-caption-title-color; word-wrap: break-word; padding-right: 36px; // leave some space for counter at right side } .mfp-image-holder { .mfp-content { max-width: 100%; } } .mfp-gallery { .mfp-image-holder { .mfp-figure { cursor: pointer; } } } @if $mfp-include-mobile-layout-for-image { @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { /** * Remove all paddings around the image on small screen */ .mfp-img-mobile { .mfp-image-holder { padding-left: 0; padding-right: 0; } img { &.mfp-img { padding: 0; } } .mfp-figure { // The shadow behind the image &:after { top: 0; bottom: 0; } small { display: inline; margin-left: 5px; } } .mfp-bottom-bar { background: rgba(0, 0, 0, 0.6); bottom: 0; margin: 0; top: auto; padding: 3px 5px; position: fixed; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; &:empty { padding: 0; } } .mfp-counter { right: 5px; top: 3px; } .mfp-close { top: 0; right: 0; width: 35px; height: 35px; line-height: 35px; background: rgba(0, 0, 0, 0.6); position: fixed; text-align: center; padding: 0; } } } } } // Scale navigation arrows and reduce padding from sides @media all and (max-width: 900px) { .mfp-arrow { -webkit-transform: scale(0.75); transform: scale(0.75); } .mfp-arrow-left { -webkit-transform-origin: 0; transform-origin: 0; } .mfp-arrow-right { -webkit-transform-origin: 100%; transform-origin: 100%; } .mfp-container { padding-left: $mfp-popup-padding-left-mobile; padding-right: $mfp-popup-padding-left-mobile; } } // IE7 support // Styles that make popup look nicier in old IE @if $mfp-IE7support { .mfp-ie7 { .mfp-img { padding: 0; } .mfp-bottom-bar { width: 600px; left: 50%; margin-left: -300px; margin-top: 5px; padding-bottom: 5px; } .mfp-container { padding: 0; } .mfp-content { padding-top: 44px; } .mfp-close { top: 0; right: 0; padding-top: 0; } } } /* WooCommerce support */ .woocommerce-page { .site-main .page-title { //display: none; } } .woocommerce-result-count { font-style: italic; } .woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count { margin-bottom: 1.5em; } .woocommerce-ordering { select { padding: 7px; margin-top: -10px; } } .woocommerce ul.products li.product h3 { @include rem('font-size', 18px); margin-bottom: 7px; } .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce button.button.alt { background-color: $primary; @include rem('padding', 10px 20px); color: #FFF; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; @include rem('font-size', 13px); border-radius: 2px; &:hover { background: #222222; color: #FFF; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } } .woocommerce table.shop_table { border-collapse: collapse; } .woocommerce .quantity .qty { padding: 5px; } .woocommerce span.onsale { padding: inherit; } .related.products h2, #tab-description h2 { @include rem('font-size', 17px); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; } .woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { padding: 9px 14px; font-weight: bold; } .woocommerce { #customer_details, #customer_login, .woocommerce-Addresses, .woocommerce-customer-details { .col-1, .col-2 { max-width: 100%; padding-left: 0px; padding-right: 0px; } } .woocommerce-additional-fields { h3 { margin-top: 20px; } } .cart_totals { th { text-align: left; } h2 { @include rem(font-size, 20px); } } .wc-proceed-to-checkout { text-align: center; } .woocommerce-order-details__title, .woocommerce-customer-details h2 { @include rem(font-size, 20px); } } .woocommerce ul.products li.product .price del { display: inline-block; } .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals { width: 100%; float: none; } #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button { display: inline-block; margin: 0 auto; } .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt { background-color: $primary; &:hover { background-color: $primary; opacity: .8; } } ; .woocommerce-MyAccount-navigation { ul { margin: 0px; padding-left: 0px; } li { list-style: none; } } /* Breadcrumbs ------------------------------*/ .breadcrumbs { font-size: 10px; padding: 15px 0px; border-bottom: 1px solid $border; color: #858585; @include for(small-screens) { font-size: 12px; } i { margin: 0px 6px; } a { text-decoration: none; color: $text; font-weight: 600; &:hover { text-decoration: underline; } } span { margin-right: 20px; position: relative; @include for(small-screens) { margin-right: 40px; } span { margin-right: 0; } } a:before { border-bottom: 6px solid transparent; border-left: 6px solid rgba(0, 0, 0, 0.2); border-top: 6px solid transparent; content: ""; display: inline-block; position: absolute; right: -11px; top: 2px; @include for(small-screens) { right: -23px; top: 3px; } } a:after { border-bottom: 5px solid transparent; border-left: 5px solid #ffffff; border-top: 5px solid transparent; content: ""; display: inline-block; position: absolute; right: -10px; top: 3px; @include for(small-screens) { right: -22px; top: 4px; } } } /* Coursel and slider */ /** * Owl Carousel v2.3.0 * Copyright 2013-2017 David Deutsch * Licensed under () */ /* * Owl Carousel - Core */ .owl-carousel { display: none; width: 100%; -webkit-tap-highlight-color: transparent; /* position relative and z-index fix webkit rendering fonts issue */ position: relative; z-index: 1; } .owl-carousel .owl-stage { position: relative; -ms-touch-action: pan-Y; touch-action: manipulation; -moz-backface-visibility: hidden; /* fix firefox animation glitch */ } .owl-carousel .owl-stage:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .owl-carousel .owl-stage-outer { position: relative; overflow: hidden; /* fix for flashing background */ -webkit-transform: translate3d(0px, 0px, 0px); } .owl-carousel .owl-wrapper, .owl-carousel .owl-item { -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); } .owl-carousel .owl-item { position: relative; min-height: 1px; float: left; -webkit-backface-visibility: hidden; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; } .owl-carousel .owl-item img { display: block; width: 100%; } .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled { display: none; } .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot { cursor: pointer; cursor: hand; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .owl-carousel.owl-loaded { display: block; } .owl-carousel.owl-loading { opacity: 0; display: block; } .owl-carousel.owl-hidden { opacity: 0; } .owl-carousel.owl-refresh .owl-item { visibility: hidden; } .owl-carousel.owl-drag .owl-item { -ms-touch-action: none; touch-action: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .owl-carousel.owl-grab { cursor: move; cursor: grab; } .owl-carousel.owl-rtl { direction: rtl; } .owl-carousel.owl-rtl .owl-item { float: right; } /* No Js */ .no-js .owl-carousel { display: block; } /* * Owl Carousel - Animate Plugin */ .owl-carousel .animated { -webkit-animation-duration: 1000ms; animation-duration: 1000ms; -webkit-animation-fill-mode: both; animation-fill-mode: both; } .owl-carousel .owl-animated-in { z-index: 0; } .owl-carousel .owl-animated-out { z-index: 1; } .owl-carousel .fadeOut { -webkit-animation-name: fadeOut; animation-name: fadeOut; } @-webkit-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } /* * Owl Carousel - Auto Height Plugin */ .owl-height { transition: height 500ms ease-in-out; } /* * Owl Carousel - Lazy Load Plugin */ .owl-carousel .owl-item .owl-lazy { opacity: 0; transition: opacity 400ms ease; } .owl-carousel .owl-item img.owl-lazy { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } /* * Owl Carousel - Video Plugin */ .owl-carousel .owl-video-wrapper { position: relative; height: 100%; background: #000; } .owl-carousel .owl-video-play-icon { } .owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon { display: none; } .owl-carousel .owl-video-tn { opacity: 0; height: 100%; background-position: center center; background-repeat: no-repeat; background-size: contain; transition: opacity 400ms ease; } .owl-carousel .owl-video-frame { position: relative; z-index: 1; height: 100%; width: 100%; } /** * Owl Carousel v2.2.1 * Copyright 2013-2017 David Deutsch * Licensed under () */ /* * Default theme - Owl Carousel CSS File */ .owl-theme { position: relative; .owl-nav { button { position: absolute; top: 50%; background-color: rgba(0, 0, 0, 0.45); border-radius: 2px; color: #999; cursor: pointer; display: block; font-size: 22px; margin-top: 0px; padding: 4px 10px 5px; transform: translateY(-50%); border: 0px none; &:focus{ box-shadow: none; outline: none; } } &:hover { background-color: rgba(0, 0, 0, 0.6); color: #fff; } .owl-prev { left: 15px; .lg-icon { &::before { content: "\e094"; } } } .owl-next { right: 15px; .lg-icon { &::before { content: "\e095"; } } } } } .owl-theme .owl-nav { margin-top: 0px; text-align: center; -webkit-tap-highlight-color: transparent; } .gallery-carousel.owl-theme .owl-nav [class*='owl-'] { color: #FFF; font-size: 14px; margin: 5px; padding: 4px 7px; display: inline-block; cursor: pointer; border-radius: 3px; } .owl-theme .owl-nav [class*='owl-']:hover { background: #869791; color: #FFF; text-decoration: none; } .owl-theme .owl-nav .disabled { opacity: 0.5; cursor: default; } .owl-theme .owl-nav.disabled + .owl-dots { margin-top: 10px; } .owl-theme .owl-dots { text-align: center; -webkit-tap-highlight-color: transparent; } .owl-theme .owl-dots .owl-dot { display: inline-block; zoom: 1; *display: inline; background: none !important; box-shadow: none !important; outline: none !important; border: 0px none; padding: 0px; } .owl-theme .owl-dots .owl-dot span { width: 10px; height: 10px; margin: 5px 7px; background: #D6D6D6; display: block; -webkit-backface-visibility: visible; transition: opacity 200ms ease; border-radius: 30px; } .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background: #869791; } /* WP FORMS */ div.wpforms-container { .wpforms-form { .wpforms-field { .wpforms-field-label, .wpforms-field-sublabel { text-transform: uppercase; font-size: 11px; letter-spacing: 2px; font-weight: 600; } } .wpforms-field-row { &.wpforms-field-medium { max-width: 100% !important; } } .wpforms-field { input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], input[type=password], input[type=range], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea { padding: 10px; max-width: 100%; border: 0px; font-size: 15px; font-weight: normal; line-height: 22px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; transition: all 0.2s linear; -moz-transition: all 0.2s linear; -webkit-transition: all 0.2s linear; -o-transition: all 0.2s linear; background-color: #f2f2f2; border-bottom: 1px solid #fff; box-sizing: border-box; color: #000000; border-bottom: 1px solid #fff; &:hover, &:focus { border: none; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; transition: all 0.2s linear; -moz-transition: all 0.2s linear; -webkit-transition: all 0.2s linear; -o-transition: all 0.2s linear; border-color: #EBEBEB; border-bottom: 1px solid #fff !important; background: #e9e9e9; } } textarea { min-height: 215px; } } button[type=submit] { width: 100%; text-align: center; display: block; } } } /* Pirate Forms */ .pirate_forms { .pirate-forms-fields-container { .form_field_wrap { width: 100%; max-width: 100%; padding: 0px; .form-control { border-radius: 0px; } .pirate-forms-submit-button { display: block; width: 100%; } } } .contact_message_wrap { #pirate-forms-contact-message { border-radius: 0px; background-color: #f2f2f2; border: 0 none; min-height: 245px; max-height: 999px; } } }