@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap');

/* font-family: 'Courier Prime', monospace;
font-family: 'Heebo', sans-serif; */
:root {
    --primaryColor: #A1D16E;
    --primaryDarkColor: #80C237;
    --secondaryColor: #10263D;
    --baseFont: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --titleFont: 'Segoe UI', monospace;
    --regular: 400;
    --medium: 550;
    --bold: 700;
    --black: 900;
    --lightBg: #FBFCF8;
    --bs-white: #FFFFFF;
    --red : red;
    --table-background: #ffffff;
    --table-border: #fefbfb;
    --table-text: #000000;
    --table-header-background: var(--primaryDarkColor);
    --table-header-text: var(--bs-white);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: normal;
}

body, wrapper {
   min-height:100vh;
}

main {
    margin: 10px 35px 0 35px;
}

.flex-fill {
   flex:1 1 auto;
}

h1 {
    font-family: var(--titleFont);
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border-radius: 10px;
}


a:hover {
    color: var(--primaryColor);
}

a,
.btn {
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    text-decoration: none;
}

.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.primaryColor {
    color: var(--primaryColor);
}

.primaryDarkColor {
    color: var(--primaryDarkColor);
}

.secondaryColor {
    color: var(--secondaryColor)
}

.lightBg {
    background-color: var(--lightBg);
}

.btnPrimary {
    background-color: #007bff;
    color: var(--bs-white);
    text-decoration: none;
    border-color: #007bff;
    border-radius: 15px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
}

.btnPrimary:hover {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    color: var(--bs-white);
}

.headerCol {
    background-color: var(--secondaryColor);
    padding: 18px 0;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.fixedHeader .headerCol {
    padding: 10px 0;
    -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}


/* navigation */
.navCol {
    text-align: right;
}

.navCol a {
    font-size: 18px;
    color: var(--primaryDarkColor);
    font-weight: var(--medium);
    display: inline-block;
    position: relative;
}

.navCol a:hover {
    color: var(--primaryDarkColor);
}

.navCol a::before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background-color: var(--primaryDarkColor);
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    opacity: 0;
}

.navCol a.active::before {
    opacity: 1;
    width: 27px;
    right: auto;
    left: 0;
}

.navCol a:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
}

.navCol a.active {
    color: var(--primaryDarkColor);
}

.navCol li {
    display: inline-block;
}

.navCol li+li {
    padding-left: 32px;
}

/*   /navigation */


/* nav toggle */
.navToggle {
    display: block;
    padding: 15px 12px;
    width: 18px;
    height: 2px;
    box-sizing: content-box;
    background-clip: content-box;
    -webkit-transition: background-color 500ms ease-in-out 250ms;
    -o-transition: background-color 500ms ease-in-out 250ms;
    transition: background-color 500ms ease-in-out 250ms;
    background-color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: auto;
}

.navToggle:hover {
    cursor: pointer;
}

.navToggle:before,
.navToggle:after {
    position: relative;
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background-color: #FFFFFF;
    -webkit-transition: transform 500ms ease-in-out;
    -o-transition: transform 500ms ease-in-out;
    transition: transform 500ms ease-in-out;
}

.navToggle:before {
    top: -6px;
}

.navToggle:after {
    bottom: -4px;
}

.navToggle__text {
    display: none;
}

.navToggleActive .navToggle {
    background-color: rgba(255, 255, 255, 0);
    transition-delay: 0s;
}

.navToggleActive .navToggle:before {
    -webkit-transform: translateY(6px) rotate(-225deg);
    -ms-transform: translateY(6px) rotate(-225deg);
    transform: translateY(6px) rotate(-225deg);
}

.navToggleActive .navToggle:after {
    -webkit-transform: translateY(-6px) rotate(225deg);
    -ms-transform: translateY(-6px) rotate(225deg);
    transform: translateY(-6px) rotate(225deg);
}

/*   /nav toggle */

body.navToggleActive {
    overflow: hidden;
}

@media (min-width:992px) {

    .headerCol .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width:1200px) {
    .headerCol .container-fluid {
        padding-left: 55px;
        padding-right: 55px;
    }
}

@media (max-width:1199px) {
    .navCol a {
        font-size: 18px;
    }

    .xlTitle {
        font-size: 40px;
    }

    .lgTitle {
        font-size: 28px;
    }

    .mdTitle {
        font-size: 24px;
    }

    .btn {
        font-size: 18px;
    }

}

@media (max-width:991px) {
    .sliderOuter .swiper-button-next.swiperBtnStyle {
        right: -20px;
    }

    .sliderOuter .swiper-button-prev.swiperBtnStyle {
        left: -20px;
    }

    .navCol a {
        font-size: 16px;
    }

    .xlTitle {
        font-size: 32px;
    }

    body {
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
    }
}

@media (max-width:767px) {
    .navCollapseCol {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 230px;
        padding: 20px;
        background: var(--primaryDarkColor);
        z-index: 99;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
    }

    .navToggleActive .navCollapseCol {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .navCol {
        text-align: left;
    }

    .navCol li+li {
        padding-left: 0;
    }

    .navCol li {
        padding: 5px 0;
    }

    .navCol li {
        display: block;
    }

    .navCol a::before {
        display: none;
    }

    .navCol a {
        font-size: 16px;
        color: var(--bs-white);
    }

    .navCol a:hover,
    .navCol a.active {
        color: var(--bs-white);
        opacity: 1;
    }

    .navCol a {
        opacity: 0.8;
    }

    .logoCol img {
        width: 50px;
    }

    .fixedHeader .headerCol,
    .headerCol {
        padding: 10px 0;
    }
}

.logo-text {
    font-weight: bold;
    color:  var(--primaryDarkColor);
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 6px;
    resize: vertical
}


.errors {
    color: red;
    font-size: 14px;
}

.custom-pagination {
    margin: 0 auto;
}

.custom-pagination span {
    font-size: 2em;
    margin-right: 10px;
}

.current-page-number {
    color: #666
}

.card-page-number {

}

.cash-up-page-number {

}

.no-results {
    margin-top: 30px;
    width:100%;
    display: flex;
    justify-content: center;
}

.toggle {
  cursor: pointer;
  display: inline-block;
    margin-top: 20px;
}

.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #56c080;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}


.search-form {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.input-wrapper {
    position: relative;
}

form .input-search {
  font-size: 1.26rem;
  font-family: "Poppins", sans-serif;
  height: auto;
  padding: 12px 12px 12px 55px;
  cursor: auto;
  border: 2px solid rgba(144,146,148,0.2);
  border-radius: 25px;
  outline-width: 2px;
  outline-color: #5D16A5;
  width: 100%;
}

.input-wrapper svg {
  color: #5D16A5;
  left: 26px;
  top: 21px;
  position: absolute;
  font-size: 18px;
}

/* Desktop */
@media screen and (min-width: 700px) {
 form .input_search { width: 500px; }
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f5f5f5;
}

.btn {
    display: inline-block;
    padding: 3px 6px;
    text-align: center;
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
}

.btn:hover {
    background-color: var(--secondaryColor);
    color: var(--bs-white);
}

.btnDanger {
    background-color: var(--red);
    border: 1px solid var(--red);
    color: var(--bs-white);
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 18px;
    font-weight: 500;
}

.cards-container {
    margin-bottom: 10px;
}

.form-section {
    margin-top: 60px;
}

.submit-btn {
    padding-top: 20px;
    width:100%;
    display: flex;
    justify-content: center;
}

.buttons {
    display: inline-flex;
    margin-left: 5px;

}

.small-number {
    width: 60px;
}

.main-card {
width: 320px;
height: 190px;
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
  perspective:600px;
  font-family: 'Space Mono', monospace;
}

.card__part {
    box-shadow: 1px 1px #aaa3a3;
    top: 0;
    position: absolute;
    z-index: 1000;
    left: 0;
    display: inline-block;
    width: 320px;
    height: 190px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 8px;

    -webkit-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.card__redlist {
   background-image: linear-gradient(to right bottom, #FF0000, #FF3333, #FF6666, #FFC080, #FF9F7F);
}

.card__hotlist {
     background-image: linear-gradient(to right bottom, #FFD700, #FFA57D, #FFC499, #FFB6BE);
}

.card__green {
    background-image: linear-gradient(to right bottom, #34C759, #2ECC40, #3BCF4B, #45D6A0, #5AE9BB);
}

.card__front{
  padding: 18px;
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
}

.card__back {
  padding: 18px 0;
-webkit-transform: rotateY(-180deg);
-moz-transform: rotateY(-180deg);
}

.card__black-line {
    margin-top: 5px;
    height: 38px;
    background-color: #303030;
}

.card__logo {
    height: 16px;
}

.card__front-logo{
      position: absolute;
    top: 18px;
    right: 18px;
}
.card__square {
    border-radius: 5px;
    height: 30px;
}

.card_number {
    display: block;
    width: 100%;
    word-spacing: 4px;
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.card__space-70 {
    width: 70%;
    float: left;
}

.card__space-30 {
    width: 30%;
    float: left;
}

.card__label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
}

.card__info {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card__back-content {
    padding: 15px 15px 0;
}
.card__secret--last {
    color: #303030;
    text-align: right;
    margin: 0;
    font-size: 14px;
}

.card__secret {
    padding: 5px 12px;
    background-color: #fff;
    position:relative;
}

.card__secret:before{
  content:'';
  position: absolute;
top: -3px;
left: -3px;
height: calc(100% + 6px);
width: calc(100% - 42px);
border-radius: 4px;
  background: repeating-linear-gradient(45deg, #ededed, #ededed 5px, #f9f9f9 5px, #f9f9f9 10px);
}

.card__back-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.card__back-square {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.card:hover .card__front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);

}

.card:hover .card__back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
}

.card_status {
    color: white;
    font-style: italic;
}

.card_status_hidden {
    opacity: 0;
}

.card-inactive {
    color: red;
    font-style: italic;
}

.details-label {
    font-weight: bold;
}

.customer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: #f3f3f3;
    width: 320px;
        }
.customer > * {
    margin: 5px;
}

.content {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.customer-card {
    padding: 10px;
    margin: 5px;
}

.flash-container {
   padding: 10px;
}

.loader {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.balance {
    color: darkgreen;
}
.low-balance {
    color: darkred;
}

.modal-confirm {
	color: #434e65;
	width: 525px;
}
.modal-confirm .modal-content {
	padding: 20px;
	font-size: 16px;
	border-radius: 5px;
	border: none;
}
.modal-confirm .modal-header {
	background: #47c9a2;
	border-bottom: none;
	position: relative;
	text-align: center;
	margin: -20px -20px 0;
	border-radius: 5px 5px 0 0;
	padding: 35px;
}

.modal-confirm h4 {
	text-align: center;
	font-size: 36px;
	margin: 10px 0;
}
.modal-confirm .form-control, .modal-confirm .btn {
	min-height: 40px;
	border-radius: 3px;
}
.modal-confirm .close {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #fff;
	text-shadow: none;
	opacity: 0.5;
}
.modal-confirm .close:hover {
	opacity: 0.8;
}
.modal-confirm .icon-box {
	color: #fff;
	width: 95px;
	height: 95px;
	display: inline-block;
	border-radius: 50%;
	z-index: 9;
	border: 5px solid #fff;
	padding: 15px;
	text-align: center;
}
.modal-confirm .icon-box i {
	font-size: 64px;
	margin: -4px 0 0 -4px;
}
.modal-confirm.modal-dialog {
	margin-top: 80px;
}
.modal-confirm .btn, .modal-confirm .btn:active {
	color: #fff;
	border-radius: 4px;
	background: #eeb711 !important;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	border-radius: 30px;
	margin-top: 10px;
	padding: 6px 20px;
	border: none;
}
.modal-confirm .btn:hover, .modal-confirm .btn:focus {
	background: #eda645 !important;
	outline: none;
}
.modal-confirm .btn span {
	margin: 1px 3px 0;
	float: left;
}
.modal-confirm .btn i {
	margin-left: 1px;
	font-size: 20px;
	float: right;
}
.trigger-btn {
	display: inline-block;
	margin: 100px auto;
}

/* ============================================================
   Responsive, centered forms + mobile-friendly layout
   ============================================================ */

/* Don't force the form section to fill the whole viewport height —
   keep the form near the top and clear of the fixed header. */
.form-section.hero.is-fullheight {
    min-height: auto;
}

.form-section {
    margin-top: 80px;
    margin-bottom: 2rem;
}

/* Cap and centre the form column on every screen size. */
.form-section .container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1rem;
}

.form-section .hero-body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 0;
}

/* The form itself: a consistently sized, centred card. */
.form-section form {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background: var(--bs-white);
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(16, 38, 61, 0.08);
}

.form-section form h4 {
    margin: 0 0 .75rem;
    font-weight: var(--bold);
    color: var(--secondaryColor);
}

.form-section .field {
    margin-bottom: 1rem;
}

/* Full-width, touch-friendly inputs & selects.
   16px font-size avoids the zoom-on-focus jump on iOS. */
.form-section .input,
.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="password"],
.form-section input[type="number"],
.form-section input[type="date"],
.form-section select {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
}

.form-section .select,
.form-section .select select {
    width: 100%;
}

/* Comfortable tap targets; action buttons stack/stretch on small screens. */
.form-section .button {
    min-height: 44px;
}

.form-section .field.is-grouped {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem;
}

.form-section .field.is-grouped > .control {
    flex: 1 1 140px;
}

.form-section .field.is-grouped .button {
    width: 100%;
}

/* Keep the short postal-code field from stretching the full width. */
.form-section .control.small-number {
    width: 140px;
    max-width: 100%;
}

/* ---- Phone / small-screen tweaks ---- */
@media (max-width: 767px) {
    main {
        margin: 10px 12px 0;
    }

    .form-section {
        margin-top: 70px;
    }

    .form-section .container {
        padding: 0 .5rem;
    }

    /* Wide data tables scroll sideways instead of breaking the layout. */
    main table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

/* Login card: lighter padding on very small screens. */
@media (max-width: 575px) {
    .card .card-body.p-5 {
        padding: 1.5rem !important;
    }
}

/* ============================================================
   Error page
   ============================================================ */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 1rem 2rem;
}

.error-card {
    width: 100%;
    max-width: 520px;
    text-align: center;
    background: var(--bs-white);
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(16, 38, 61, 0.12);
    animation: errorPop 0.4s ease-out both;
}

@keyframes errorPop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.error-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primaryDarkColor);
    display: inline-block;
}

.error-code {
    font-family: var(--titleFont);
    font-weight: var(--black);
    font-size: clamp(4.5rem, 18vw, 7rem);
    line-height: 1;
    margin: .5rem 0;
    background: linear-gradient(135deg, var(--primaryColor), var(--primaryDarkColor) 45%, var(--secondaryColor));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primaryDarkColor); /* fallback if background-clip unsupported */
}

.error-message {
    color: #5a6678;
    font-size: 1.15rem;
    margin: .5rem 0 2rem;
}

.error-home-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 44px;
    padding: 12px 28px;
    border-radius: 30px;
    background: var(--secondaryColor);
    color: var(--bs-white);
    font-weight: var(--medium);
    transition: all .25s ease-in-out;
}

.error-home-btn:hover {
    background: var(--primaryDarkColor);
    color: var(--bs-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 194, 55, 0.35);
}

/* ============================================================
   ID photo capture widget
   ============================================================ */
.photo-capture {
    margin-bottom: 1.25rem;
}

.photo-optional {
    font-size: .8rem;
    font-weight: var(--regular);
    color: #8a93a2;
}

.photo-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    background: #0d1b2a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-video,
.photo-crop-image,
.photo-final {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cropper.js replaces the <img>; let it size within the frame. */
.photo-crop-image {
    max-width: 100%;
}

.photo-final {
    object-fit: contain;
    background: #0d1b2a;
}

.photo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-top: .85rem;
}

.photo-actions .button {
    min-height: 44px;
}

.photo-status {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-weight: var(--medium);
    margin-bottom: 1rem;
}

.photo-status--done {
    color: var(--primaryDarkColor);
}

.photo-status--missing {
    color: #b0772a;
}

.id-photo-preview {
    margin-bottom: 1rem;
}

.id-photo-image {
    max-width: 220px;
    max-height: 220px;
    width: auto;
    height: auto;
    border-radius: 6px;
    border: 1px solid #dbdbdb;
    object-fit: cover;
}

@media (max-width: 575px) {
    .photo-actions .button {
        flex: 1 1 calc(50% - .5rem);
    }
}
