a {
    color: #742da8;
    text-decoration: none;
}

.content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    }

.mdl-button--accent {
    background-color: #742da8 !important;
}

.button-container {
    margin-bottom: 20px;
}

/*------------------------------*/
/*---- Card ----*/
/*------------------------------*/

.mdl-card {
    width: 60%;
    min-width: 900px;
    margin-top: 30px;
    align-self: center;
    border-radius: 16px;
    padding: 24px 16px;
    /*gap: 16px;*/
}

.mdl-card__title-text {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    color: #111111;
}

.mdl-card__supporting-text {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 16px 16px;
}

/*------------------------------*/
/*---- Table ----*/
/*------------------------------*/

.table-container {
    width: 100%;
    overflow-x: auto;
}

.mdl-data-table {
    width: 100%;
}

/*------------------------------*/
/*---- Forms ----*/
/*------------------------------*/

/* .mdl-textfield__label {
    font-size: 13px !important;
    font-weight: 600;
    color: #656565 !important;
    text-transform: uppercase;
    top: 4px;
} */

.mdl-textfield__error {
    visibility: visible !important;
}

.mdl-textfield__helper-text {
    font-size: 12px;
    margin-top: 0;
    vertical-align: top;
    display: inline-block;
    margin-left: 4px;
}

.mdl-textfield__helper-text ul {
    font-size: 12px;
}

textarea.mdl-textfield__input {
    resize: none;
    width: 100%;
    height: 100%;
}

.mdl-textfield_input {
    padding: 8px 0px !important;
}

.text-center {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 5px;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.form-textarea {
    width: 600px;
    height: 200px;
}

.form-submit-button {
    width: 250px;
    height: 40px;
    margin-top: 10px;
    border-radius: 8px;
    padding: 0 8px !important;
}

.full-width-button {
    width: 100% !important;
}

.photo-types-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.photo-types-container .mdl-checkbox {
    margin-right: 20px;
    flex-grow: 1;
}

span.field-label {
    font-size: 12px;
}

.input-group {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #C3C3C3;
    overflow: hidden;
}

.input-group-icon {
    padding: 0 10px;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #fff;
}

/*------------------------------*/
/*---- Photos ----*/
/*------------------------------*/

.photos-detail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.image-container {
    margin: 20px;
}

.image-container img {
    height: 200px;
    margin-bottom: 10px;
}

/*------------------------------*/
/*---- Sidebar ----*/
/*------------------------------*/

.mdl-layout__drawer {
    width: 280px;
}

.mdl-layout--fixed-drawer > .mdl-layout__content {
    margin-left: 280px;
}

.drawer-header {
    padding: 20px;
}

.drawer-header img {
    width: 70%;
}

.mdl-navigation .material-icons {
    margin-right: 10px;
}

/*------------------------------*/
/*---- Social Media Login ----*/
/*------------------------------*/

.social-login {
    width: 100%;
    margin-top: 15px;
}

.social-login ul {
    list-style: none;
    padding: 0;
}

.social-login form {
    width: 100%;
    height: 100%;
}

.social-login button {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #C3C3C3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
}

.social-login img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.social-login span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
    color: #742da8;
}

/*------------------------------*/
/*---- Logo ----*/
/*------------------------------*/

div.logo {
    /*padding: 15px 0 15px 40px;*/
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    margin: 50px 0 0 90px;
}
div.logo img {
    width: 120px;
    opacity: 1;
    max-width: 100%;
}

/*------------------------------*/
/*---- Messages ----*/
/*------------------------------*/

ul.messages {
    padding-left: 0;
    padding-right: 0;
}

.success {
    list-style: none;
    background-color: #cff0da;
    color: #111111;
    padding: 20px 10px;
    border-top: 1px solid #4f953b;
    border-bottom: 1px solid #4f953b;
    text-align: center;
}

.info {
    list-style: none;
    background-color: #D8E6E7;
    color: #111111;
    padding: 20px 10px;
    border-top: 1px solid #77AAAD;
    border-bottom: 1px solid #77AAAD;
    text-align: center;
}

.warning {
    list-style: none;
    background-color: #FBFFB9;
    color:  #111111;
    padding: 20px 10px;
    border-top: 1px solid #F6B352;
    border-bottom: 1px solid #F6B352;
    text-align: center;
}

.error {
    list-style: none;
    background-color: #FADAD8;
    color: #111111;
    padding: 20px 10px;
    border-top: 1px solid #AF4034;
    border-bottom: 1px solid #AF4034;
    text-align: center;
}