a {
    text-decoration: none;
}

hr {
    border-style: dashed;
    border-width: 1px;
    border-color: lightgray;
}

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
}

.overlay .loader-spin,
.content_area .loader-spin {
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s infinite;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #555;
    height: 50px;
    left: 50%;
    top: 35%;
    width: 50px;
}

.overlay .loader-spin {
    position: absolute;
}

.content_area .loader-spin {
    position: relative;
}

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

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

div.gadgets_list a.gadget_item {
    cursor: pointer;
    text-decoration: none;
}

.card
{
    border-radius: 10px !important;
}