html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/*checkbox to swtich from img to card*/
#chk{
    display: none;
}

.dress {
    display: block;
    max-width: 100%;
    margin-bottom: 1px;
}

#dress-name {
    font-size: calc(1.275rem + .3vw);
}

.dress-card {
    padding: 1em;
    margin-left: -3%;
    position: fixed;
    width: 100%;
    bottom: 0;
    transform: translateY(63%);
    transition: .8s ease-in-out;
}

.ico-size {
    height: 1.7em;
}

#chk:checked ~ .dress-card {
    transform: translateY(-0%);
}

a {
    text-decoration: none;
}