﻿a.link-subject,
a.link-subject:hover,
a.link-subject:focus,
a.link-subject:active {
    text-decoration: none;
}

.subject {
    padding-left: 90px;
    position: relative;
    height: 120px;
    margin-bottom: 30px;
    line-height: 120px;
    font-size: 14pt;
    text-transform: uppercase;
    border-radius: 7px;
    background-color: #fff;
    box-shadow: 3px 3px 3px 0px #e0e0e08f;
    border: 1px solid #f1f1f1;
}

.subject:hover {
    background-color: #40a2c9;
    color: #fff;
    cursor: pointer;
}

.subject img {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40px;
    left: 30px;
}
   
.subject .sub-name {
    line-height: normal;
    padding-right: 20px;
    display: table-cell;
    vertical-align: middle;
    height: inherit;
}

.s-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
}
@media only screen and (max-width: 320px) {
    .subject{
        margin-bottom: 10px;
    }
}
@media only screen and (min-width: 321px) and (max-width: 767px) {
  .subject{
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .subject{
        height: 90px;
        line-height: 90px;
    }

    .subject img{
        top: 25px;
    }
    .subject .sub-name{
        font-size: 11pt;
    }
}
