.container {
    margin: auto;
}

.radio-inputs {
    display: block;
    width: 100%;
}

.radio-inputs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    justify-content: center;
    align-content: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.radio-inputs > * {
   
}

.radio-inputs > .padding-stamp {
    width: 150px;
    min-height: 150px;
    max-height: 150px;
    border-radius: 0.5rem;
    border: 2px solid #b5bfd9;
    border: 1px gray dotted;
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    -webkit-animation: 1.5s shine linear infinite;
            animation: 1.5s shine linear infinite;
}

@-webkit-keyframes shine {
    to {
      background-position-x: -200%;
    }
}

@keyframes shine {
    to {
      background-position-x: -200%;
    }
}
  
.radio-input:checked + .radio-tile {
    border-color: #2260ff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #2260ff;
}
  
.radio-input:checked + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: #2260ff;
    border-color: #2260ff;
}
  
.radio-input:checked + .radio-tile .radio-icon svg {
    fill: #2260ff;
}
  
.radio-input:checked + .radio-tile .radio-label {
    color: #2260ff;
}
  
.radio-input:focus + .radio-tile {
    border-color: #2260ff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
  
.radio-input:focus + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
}
  
.radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    min-height: 150px;
    max-height: 150px;
    border-radius: 0.5rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}
  
.radio-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.35rem;
    left: 0.35rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
}
  
.radio-tile:hover {
    border-color: #2260ff;
}
  
.radio-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}
  
.radio-icon img {
    width: 5rem;
    height: 5rem;
    max-width: 5rem;
    max-height: 5rem;
    fill: #494949;
}
  
.radio-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
    font-size: 13px;
}
  
.radio-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.radio-tile .hide {
    display: none !important;
}

@media only screen and (min-width: 600px) and (max-width: 900px) {
    
    .radio-inputs {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        justify-content: center;
        align-content: center;
        align-items: center;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .radio-inputs > label {
        width: 150px;
        margin: auto;
        margin-bottom: 5px;
    }
    footer {
        padding: 10px;
    }
}

@media only screen and (max-width: 600px) {
    #content {
        margin: 10px;
    }
    .container {
        margin: 0;
        padding: 0;
    }
    .row, .col-md-12 {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .radio-inputs {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        justify-content: center;
        align-content: center;
        align-items: center;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .radio-inputs > label {
        width: 150px;
        margin: auto;
    }
    footer {
        padding: 10px;
    }
}

