/*
 *  Copyright (C) SCHUNK GmbH & Co. KG - All Rights Reserved
 *  Unauthorized copying of this file, via any medium is strictly prohibited
 *  Proprietary and confidential
 *  Written by Thomas Rutschke thomas.rutschke@rutschkeconsulting.com, November 2022
 */
/* 
    CSS for the structure for a SchunkInfoFieldPage_CE
    Created on : 29.05.2024, 09:34:27
    Author     : ThomasRutschke
*/

.schunk-info-field-page {
    background-color: #FFF1C0;
    padding: 2rem;
    margin: 0;
    /*height: 10rem;*/
    border-bottom: solid 4px orange;
    font-size: 1.6rem;
}

.schunk-info-field-page.hidden {
    display: none;
}

.schunk-info-field-page a {
    padding-left: calc(16rem - 20px);
}

.info {
}

.error {
}

.schunk-info-field-text {
    padding: 1rem 16rem 0.1rem 16rem;
    color: black;
    position: relative;
}

.schunk-info-field-text.info:before {
    margin-left: -10rem;
    content: url(../images/Icon_Wissenschaftler_44444444.svg);
    color: black;
    display: inline-block;
    transform: translate(0, -2rem) scale(0.6);
    position: absolute;
}

.schunk-info-field-text.error:before {
    margin-left: -10rem;
    content: url(../images/Warning_Red.svg);
    color: #A10000;
    display: inline-block;
    /*vertical-align: middle;*/
    transform: scale(1.0);
    position: absolute;
}



