﻿/*
$font-primary: 'Roboto', sans-serif;
$font-secondary: 'Oswald', sans-serif;
$font-tertiary: 'DM Sans', sans-serif; */

body {
    background: repeating-linear-gradient(-45deg,#f7f7f7,#f7f7f7 60px,#efefef 60px,#efefef 120px);
    font-family: 'Roboto',  sans-serif;
    padding-top: 75px;
    margin: 0;
}

body * {
   box-sizing: border-box; 
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

ol, ul {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 1em;
}

h1, h2, h3, h4 {
    font-family: Oswald,sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.color-pink {
    color: #ff33cb;
}

.color-green {
    color: #33ffcb;
}

.container {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
}

header.main-header {
    background-color: #ff33cb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
}

.main-header__inner {
    display: flex;
    height: 75px;
    justify-content: space-between;
    align-items: center;
}

header.main-header img {
    width: 90%;
    max-width: 160px;
}

#info-toggle {
    padding: 0;
    background: 0 0;
    border: none;
    position: relative;
    width: 22px;
    height: 15px;
}

#info-toggle span {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000;
    display: block;
    left: 0;
    transition: transform .3s ease,top .3s ease,left .3s ease;
}

#info-toggle span:first-child {
    top: 0;
}

#info-toggle span:nth-child(2) {
    top: 6px;
}

#info-toggle span:last-child {
    top: 12px;
}

main.main-content {
    padding: 20px 0;
}

.content-wrap {
    background-color: #ffffff;
    padding: 20px;
}

.digital-photo-copy {
    margin-bottom: 20px;
}

.info-btn,
.back-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-family: Oswald,sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: inherit;
    cursor: pointer;
}

.info-btn svg {
    width: 1.4em;
    margin-left: 0.5em;
}

.back-btn svg {
    width: 1.2em;
    margin-right: 0.5em;
}

.info-btn svg.fa-times {
    display: none;
    margin-left: 0;
} 


.info-drawer {
    position: fixed;
    top: 75px;
    right: 0;
    bottom: 0;
    background-color: #ff33cb;
    width: 100%;
    padding: 20px;
    z-index: 5;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0;
}

body.info-drawer-open .info-drawer {
    transform: none;
    opacity: 1;
}

body.info-drawer-open .info-btn span,
body.info-drawer-open .info-btn svg.fa-info-circle {
    display: none;
}

body.info-drawer-open .info-btn svg.fa-times {
    display: block;
} 

.info-drawer__block {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 2em;
}

.info-drawer__block h4 {
    font-family: Oswald,sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.info-drawer__block ul.links {
    list-style-type: none;
    padding: 0;
}

.info-drawer__block ul.links li a {
    color: #000000;
    text-decoration: none;
}

footer.main-footer {
    padding: 20px 0;
    background-color: #ff33cb;
}

footer.main-footer p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 0;
}

.btn {
    width: 100%;
    display: block;
    padding: 18px 24px;
    border-radius: 3px;
    font-family: Oswald,sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.btn-primary,
.btn-success {
    background-color: #33ffcb;
    border-color: #33ffcb;
    color: #000000;
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success:active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success.focus,
.open > .dropdown-toggle.btn-success:focus,
.open > .dropdown-toggle.btn-success:hover {
    background-color: #33ffcb;
    border-color: #33ffcb;
    color: #000000;
}

.btn-danger {
    background-color: #FF3357;
    color: #000000;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 700;
}

.actions {
    display: flex;
}

.actions .btn:first-child {
    margin-left: 10px;
}

.actions .btn:last-child {
    margin-left: 10px;
}

.payment-error {
    font-weight: bold;
    font-size: 26px;
    color: darkred;
    word-break: break-all;
}