﻿.center {
    text-align: center;
    border: 3px solid grey;
    padding: 80px 50px 80px 50px;
    margin: 10px;
}

.no-display {
    display: none !important;
}

.center-notification {
    margin: auto;
    width: 50%;
    position: relative;
}

.registrySelection {
    background-color: #f5f5f5;
    border-radius: 5px;
    height: 150px;
    width: 100%;
    padding: 20px 40px;
    margin-bottom: 15px;
    transition: 0.3s box-shadow ease-in-out;
    border: 0;
}

.registrySelection-title h3 {
    display: block;
    margin-top: 40px;
    padding-bottom: 15px;
    font-weight: 700;
    font-size: 26px;
}

.registrySelection:focus, .registrySelection:active {
    outline: none;
}

.registrySelection:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.registrySelection--isSelected {
    color: #00a3dd;
    position: relative;
    display: block;
    margin-top: 2px;
    height: 50px;
    width: 50px;
    float: right;
    padding: 0;
}

    .registrySelection--isSelected:before {
        content: "\e089";
        font-size: 50px;
        font-family: 'Glyphicons Halflings';
    }

/*.registrySelection > img {
    position: absolute;
    top: 50%;
    height: 90px;
    margin-top: -45px;*/
    /* Half the height */
/*}*/

@media only screen and (min-device-width: 768px) and (max-device-width: 991px) {
    .full-width-md-screen .col-md-12 {
        max-width: 100%;
        width: 100%;
        flex: 100%;
    }
}

.full-width-md-screen .registrySelection {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}