﻿html,
body 
{
    padding: 0;
    margin: 0;
    width: 100%;
    background: #fafbfb;
    background-image: url('/interface/master/background.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    color: #5e7885;
    font-size: 14px;
    line-height: 1.2;
    font-family: 'Titillium Web', Arial, Helvetica, Verdana, sans-serif;
}

h3 {
    font-weight: normal;
}

a
{
    color: #009366;
    text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}

.header {
    background: white;
    padding: 20px 40px 20px 40px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.header-logos {
    justify-content: space-around;
    align-items: baseline;
    width: 100%;
    display: flex;
}

.livecorp-logo > img {
    width: 240px;
}

.mla-logo > img {
    width: 100px;
}

.ag-logo > img {
    width: 150px;
}

.header-title
{
    margin-top: 16px;
    float:right;
    text-align: right;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
    color: #5e7885;
}

.nav
{
    background: white;
    padding: 0px 40px;
}

.nav-bar
{
    border-bottom: 2px solid #aebbc2;
    border-top: 2px solid #aebbc2;
}

.nav-bar > div
{
    float: left;
    position: relative;
    margin-left: 1px;
    width: 100%;
}

.nav-bar > div:first-child
{
    margin-left: 0;
}

.nav-bar > div.clear-fix:before,
.nav-bar > div:first-child:before
{
    display: none;
}


.nav-bar > div.clear-fix
{
    float: none;
    border-left: none; 
}

.nav-bar > div > a
{
    display:block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: #5e7885;
}

.nav-bar > div > a:hover
{
    background: #eff1f3;
}


.nav-bar > div:after {
    content: ' ';
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -1px;
    background: #aebbc2;
}

.nav-bar > div > div
{
    display: none;
    position: absolute;
    /*width: 300px;*/
    /*background: #fafbfb;*/
    background: #FFFFFF;
    z-index: 200;
    left: -2px;
    top: 100%;
    border: 2px solid #aebbc2;
}

.nav-bar > div:hover > div
{
    display: block;
}

.nav-bar > div > div > div
{
    position: relative;
}

.nav-bar > div > div > div:before
{
    content: ' ';
    display: block;
    position: absolute;
    height: 1px;
    top: -1px;
    left: 10px;
    right: 10px;
    z-index: 300;
    background: #aebbc2;
}

.nav-bar > div > div > div > a
{
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #5e7885;
    white-space:nowrap;
}

.nav-bar > div > div > div > a:hover
{
    background: #eff1f3;
}

@media only screen and (min-width: 992px) {
    .page {
        width: 1000px;
        margin: 0 auto;
    }

    .header {
        flex-direction: row;
    }

    .header-logos {
        justify-content: start;
    }

    .header-logo {
        margin-right: 20px;
    }
    
    .header-logo > img {
        width: auto;
    }

    .mla-logo > img {
        width: 140px;
    }

    .nav-bar > div {
        width: auto;
    }

    .nav-bar > div:before {
        content: ' ';
        display: block;
        position: absolute;
        height: 25px;
        width: 1px;
        top: 5px;
        left: -1px;
        background: #aebbc2;
    }

    .nav-bar > div:after {
        display: none;
    }

    .content {
        padding: 20px 20px 20px;
    }

    .content-standard-title {
        margin-bottom: 20px;
    }

    .main {
        padding: 20px 40px 40px 40px;
    }

    .main-column {
        width: 630px;
    }

    .calculate-buttons {
        width: 396px;
    }

    .calculator-fields > div {
        width: 45%;
        float: right;
    }

    .calculator-fields > div:first-child {
        float: left;
    }

}

.nav-standard
{
    font-weight: bold;
}

.menu-icon
{
    margin: -10px 10px -10px 0;
}

.standard-color-1
{
    color: #ff3c2c;
}

.standard-color-2
{
    color: #ff8d06;
}

.standard-color-3
{
    color: #c7a551;
}

.standard-color-4
{
    color: #87ce04;
}

.standard-color-5
{
    color: #0873ce;
}

.standard-color-6
{
    color: #6600d8;
}

.content
{
    background: #eff1f3;
    position: relative;
    padding: 4px;
}

.content-standard-title
{
    height: 34px;
    background-repeat: no-repeat;
    background-position: top right;
    color: white;
    padding: 14px;
    font-size: 15px;
    font-weight: bold;
    background-color: #5e7885;
}

.content-standard-title-inner {
    max-width: 500px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.content-standard-title-text {
    flex: 1;
}

.standard-bar-1 {
    background-color: #ff3c2c;
    background-image: url('/interface/master/standard-1.png');
}

.standard-bar-2
{
    background-color: #ff8d06;
    background-image: url('/interface/master/standard-2.png');
}

.standard-bar-3
{
    background-color: #c7a551;
    background-image: url('/interface/master/standard-3.png');
}

.standard-bar-4
{
    background-color: #87ce04;
    background-image: url('/interface/master/standard-4.png');
}

.standard-bar-5
{
    background-color: #0873ce;
    background-image: url('/interface/master/standard-5.png');
}

.standard-bar-6
{
    background-color: #6600d8;
    background-image: url('/interface/master/standard-6.png');
}

.content-standard-title-number
{
    font-size: 20px;
    font-weight: bold;
}   


h2
{
    margin-top: 0px;
}

/*.nav-bar > div > div > div > div
{
    display: none;
    position: absolute;
    width: 300px;
    background: #fafbfb;
    z-index: 200;
    left: 100%;
    top: 0;
    
}

.nav-bar > div > div > div:hover > div
{
    display: block;
}

.nav-bar > div > div > div > div > div
{
    padding: 10px 20px;
}*/

.main
{
    background: white;
    min-height: 395px;
}

.footer
{
    position: relative;
    padding: 5px 40px;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
}

.footer:before
{
    content: ' ';
    display: block;
    height: 2px;
    top: -2px;
    left: 40px;
    right: 40px;
    position: absolute;
    
    background: #aebbc2;
}



.menu-column
{
    float:left;
    width: 270px;
}

.main-column
{
    float:right;
}

.clear-fix
{
    clear: both;
    height: 0;
    width: 0;
    font-size: 0px;
    line-height: 0px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    zoom: 1;
    float: none !important;
}

.next-previous-top
{
    position: absolute;
    right: -2px;
    top: -2px;
    width: 206px;
}

.next-previous-bottom
{
    margin: 20px auto 0 auto;
    width: 206px;
}

.calculate-buttons
{
    margin: 20px auto 0 auto;
}

.calculate-button,
.button
{
    display: block;
    float: left;
    padding: 10px 20px;
    background: #dde3e5;
    color: #5e7885;
    border: 2px solid #afbbc2;
    cursor: pointer;
    text-decoration: none;
    margin: 2px;
    text-align: center;
}

.calculate-button
{
    width: 150px;
}

.calculate-button:hover,
.button:hover
{
    background: #fafbfb;
}

.side-menu > div
{
    border-bottom: 2px solid #aebbc2;
    position: relative;
    border-bottom: 2px solid #eff1f3;
}

.side-menu > div > a > div.menu-expand
{
    display: block;
    width: 13px;
    height: 11px;
    background: #5e7885;
    background-image: url('/interface/master/triangle-mask.png');
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    left: 7px;
    top: 11px;
    z-index: 50;
}

.side-menu > div > a:hover > div.menu-expand
{
    background-image: url('/interface/master/triangle-mask-hover.png');
}

.side-menu > div.expanded > a > div.menu-expand
{
    background-image: url('/interface/master/triangle-up-mask.png');
    top: 11px;
}

.side-menu > div.expanded > a:hover > div.menu-expand
{
    background-image: url('/interface/master/triangle-up-mask-hover.png');
    top: 11px;
}

.side-menu > div > a.selected
{
    background: #eff1f3 !important;
}

.side-menu > div > a.selected > div.menu-expand
{
    background-image: url('/interface/master/triangle-mask-hover.png') !important;
}

.side-menu > div.expanded > a.selected > div.menu-expand
{
    background-image: url('/interface/master/triangle-up-mask-hover.png') !important;
    top: 11px;
}

.side-menu > div > a
{
    display:block;
    padding: 8px 10px 8px 26px;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    font-size: 16px;
    text-transform:uppercase;
    color: #5e7885;
}

.side-menu > div > a > img
{
    float: left;
    margin: -6px 5px -6px 0px;
    top: 1px;
}

.side-standard-name
{
    font-size: 13px;
    text-transform:initial;
}


.side-menu > div > div
{
    display: none;
}

.side-menu > div.expanded > div
{
    display: block;
}

.side-menu > div > div > a
{
    display:block;
    padding: 5px 10px 5px 26px;
    position: relative;
    text-decoration: none;
    color: #5e7885;
    /*font-size: 12px;*/
}

.side-menu > div > a:hover,
.side-menu > div > div > a:hover,
.side-menu > div > div > a.selected
{
    background: #eff1f3;
}

.side-menu > div > div > a:before
{
    content: ' ';
    display:block;
    width: 7px;
    height: 7px;
    position: absolute;
    background: #5e7885;
    left: 10px;
    top: 8px;
}

.side-menu > div.side-standard-1 > div > a:before,
.side-menu > div.side-standard-1 > a > div.menu-expand
{
    background-color: #ff3c2c;
}

.side-menu > div.side-standard-2 > div > a:before,
.side-menu > div.side-standard-2 > a > div.menu-expand
{
    background-color: #ff8d06;
}

.side-menu > div.side-standard-3 > div > a:before,
.side-menu > div.side-standard-3 > a > div.menu-expand
{
    background-color: #c7a551;
}

.side-menu > div.side-standard-4 > div > a:before,
.side-menu > div.side-standard-4 > a > div.menu-expand
{
    background-color: #87ce04;
}

.side-menu > div.side-standard-5 > div > a:before,
.side-menu > div.side-standard-5 > a > div.menu-expand
{
    background-color: #0873ce;
}

.side-menu > div.side-standard-6 > div > a:before,
.side-menu > div.side-standard-6 > a > div.menu-expand
{
    background-color: #6600d8;
}

.side-appendix
{
    font-size: 11px;
    font-style:italic;
}

.calculator-fields
{
}

.calculator-field
{
    margin: 5px 0px;
}

.calculator-field > div
{
    float: right;
}

.calculator-field > div:first-child
{
    margin-top: 6px;
    float: left;
}

.text-adjustment
{
    line-height: 22px;
    padding: 0 0 2px 4px;
    font-size: 14px;
    /*height: 22px;*/
    width: 203px;
    box-sizing:border-box;
}

.calculator-error,
.invalid-field
{
    color: #5d1d1d;
    background: #ffc6c6;
    border: 2px solid #d47d7d;
    color: #5d1d1d;
    padding: 5px;
}

h4
{
    display: block;
    /*border-bottom: 2px solid #dde3e5;
    padding-bottom: 5px;*/
    font-style: italic;
    margin-bottom: 5px;
    margin-top: 10px;
}

h4 .small
{
    font-weight: normal;
}

.calculator-grid
{
    width: 100%;
    border: 2px solid #afbbc2;
    border-collapse: collapse;
}

.calculator-grid td
{
    padding: 10px;
    border: 1px solid #e7ebed;
    background: #ffffff;
}

.calculator-grid .calculator-grid-heading td
{
    vertical-align: bottom;
    background: #dde2e5;
    border: 1px solid #dde2e5;
}

.calculator-grid .calculator-grid-total td
{
    background: rgb(238, 238, 238);
    border: 1px solid rgb(238, 238, 238);
}

.grid-wrapper, #divGrid {
    overflow-x: auto;
    overflow-y: hidden;
}

.no-background {
    border-bottom: none !important;
    border-top: none !important;
}

.expand-collapse
{
    border-bottom: none !important;
    width: 12px;
}


.calculator-grid-name,
.calculator-grid-value 
{
    vertical-align: top;
}

.calculator-field .invalid-field {
  width: 203px;
  box-sizing: border-box;
}

.chaff
{
    color: #ff3c2c;
} 

.remaining 
{
    color: #87ce04;
}

.roughage
{
    color: #ff8d06;
} 

.concentrates
{
    color: #c7a551;
}

.bedding-weight
{
    color: #0873ce;
}

.bedding-volume
{
    color: #6600d8;
}

.legend div
{
    margin-top: 5px;
    float: left;
}

.legend .color
{
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.legend .name
{
    line-height:18px;
    margin-right: 20px;
}

.legend .chaff
{
    background: #ff3c2c;
} 

.legend .remaining 
{
    background: #87ce04;
}

.legend .roughage
{
    background: #ff8d06;
} 

.legend .concentrates
{
    background: #c7a551;
}

.legend .bedding-weight
{
    background: #0873ce;
}

.legend .bedding-volume
{
    background: #6600d8;
}

.calculator-grid-value
{
    width: 140px;
    text-align: right;
}

.calculator-grid-edit
{
    width: 20px;
}


.calculator-grid-edit img
{
    margin: -6px;
}


.calculator-grid-shipment
{
    display: none;
}

.calculator-grid-animal
{
    display: none;
}

.content-list
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.content-list li
{
    margin: 2px 0;
}

.content-list li a
{
    padding: 10px 20px;
    background: #dde3e5;
    color: #5e7885;
    border: 2px solid #afbbc2;
    display: block;
    font-weight: bold;

}

.content-list li a:hover
{
    text-decoration: none;
    background: #fafbfb;
}

.content-list-appendix,
.content-list-standard-name
{
    font-style:italic;
    font-weight: normal;
}

.front-page
{
    text-align: center;
}

.search-field 
{
    float: right !important;
    margin-top: 4px !important;
    display: flex;
}

.search-field > input  {
    margin-left: 20px;
}

.search-button 
{
    height: 20px;
    width: 20px;
    display: block;
    background-image: url('/interface/master/search.png');
    background-repeat: no-repeat;
    padding: 0px !important;
    float: right;
    margin-top: 4px;
    margin-left: 5px;
}

 .search-button:hover 
 {
    background-color: white !important;
    background-image: url('/interface/master/search-hover.png') !important;
    background-repeat: no-repeat !important;

 }

.nav-bar > div.search-field:before 
{
    display: none !important;
}

.search-list 
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.search-list li
{
    margin: 2px 0;
}

.search-list li a
{
    position: relative;
    padding: 10px 20px;
    background: #ffffff;
    color: #5e7885;
    border: 2px solid #afbbc2;
    display: block;
    font-weight: bold;

}

.search-list li a:hover
{
    text-decoration: none;
    background: #dde3e5;
}


.search-list li a:hover .search-summary
{
    display:block;
}

.search-title-section
{
    float: left;
    padding-right: 20px;
}

.search-title-main
{
    float: left;
    padding-left: 20px;
}

.search-title-sub
{
    font-weight: normal;
    font-style: italic;
}

/*.search-summary 
{
    display: none;
    font-weight: normal;
    position: absolute;
    z-index: 200;
    box-sizing: border-box;
    width: 634px;
    padding: 20px;
    background: #eff1f3;
    border: 2px solid #afbbc2;
    right: -2px;
    top: 100%;
}*/

.search-summary 
{
    font-weight: normal;
}

/*CONTENT STYLES*/

.table-title {
    font-weight: bold;
}

.figure-1 {
    width: 100%;
}

.footnote-table
{
    font-size: 75%;
}

.footnote-table td
{
    vertical-align: top;
}

.livestock-export-chain
{
	border-collapse: collapse;
	width: 100%;
    margin-bottom: 10px;
}

.table-row td:nth-child(2) p {
    text-align: right;
    padding-right: 10px;
}

.livestock-export-chain td:first-child
{
    width: 25%;
}

.livestock-export-chain .down-arrow
{
    text-align: center;
}

.livestock-export-chain td
{
	border: 1px solid #afbbc2;
	padding: 5px;
	vertical-align: top;
    background: white;
}

.livestock-export-chain tr:nth-child(7) td
{
	border: 1px dashed #afbbc2;
}

.livestock-export-chain tr:nth-child(8) td
{
	border: 1px dashed #afbbc2;
}

.export-guiding-principles
{
    margin: 10px 0px;
	border: 1px solid #afbbc2;
	padding: 0px 10px !important;
    background: white;
}

.export-guiding-principles ul
{
	padding-left: 20px;
}

.acronym-table td,
.glossary-table td
{
    padding: 5px;
    vertical-align: top;
}

.glossary-table p 
{
    margin-top: 0;
}

.glossary-table td:first-child
{
    width: 25%;
}

.acronym-table td:first-child
{
    width: 15%;
}

.standard-table > tr > td,
.standard-table > tbody > tr > td
{
    vertical-align: top;
    padding: 10px 0;
}

.standard-table > tr > td:first-child,
.standard-table > tbody > tr > td:first-child
{
    width: 10%;
}

.standard-table td p:first-child
{
    margin-top: 0px;
}

.standard-table td p:last-child
{
    margin-bottom: 0px;
}

.standard-table td ol,
.standard-table td ul
{
    padding-left: 30px;
}

ol li,
ul li
{
    margin: 5px 0;
}

.rejection-criteria
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	width: 100%;
}

.rejection-criteria tr:first-child td
{
	font-weight: bold;
}

.rejection-criteria td
{
	border-bottom: 1px solid #afbbc2;
	padding: 5px;
	vertical-align: top;
    background: white;
}

.rejection-criteria td p
{
	margin: 5px 0px;
}



.appendix-table
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	width: 100%;
}

.appendix-table td
{
	padding: 5px;
	vertical-align: top;
    background: white;
}

.appendix-table td p:first-child
{
    margin-top: 0px;
}

.appendix-table td p:last-child
{
    margin-bottom: 0px;
}

.appendix-table tr:first-child td
{
	background: white !important;
	border-bottom: 1px solid #afbbc2;
	font-weight: bold;
    vertical-align: bottom;
}

.appendix-table ul {
    margin-top: 0px;
}

.table-zebra tr:nth-child(odd) td
{
	background: #eff1f3;
}

.double-header.table-zebra tr:nth-child(odd) td
{
	background: white;
}

.double-header.table-zebra tr:nth-child(even) td
{
	background: #eff1f3;
}

.appendix-table.double-header tr:first-child td
{
	background: white;
	border-bottom: none;
	font-weight: bold;
}

.appendix-table.double-header tr:nth-child(2) td
{
	background: white;
	border-bottom: 1px solid #afbbc2;
	font-weight: bold;
}

.appendix-table.table-row-underline td
{
	border-bottom: 1px solid #afbbc2;
}

.appendix-table-heading
{
    font-weight: bold;
}

.alpaca-test
{
    float: left;
    width: 20%;
    margin: 0 10px 10px 0;
}

.alpaca
{
    width: 120px
}

.appendix-table.standard-2.appendix-2 td,
.appendix-table.standard-4.appendix-1 td,
.appendix-table.standard-6.appendix-1 td
{
    text-align: center;
}

.double-header.standard-2.appendix-2 tr:first-child td[colspan],
.double-header.standard-4.appendix-1 tr:first-child td[colspan],
.double-header.standard-6.appendix-1 tr:first-child td[colspan]
{
	border-bottom: 1px solid #afbbc2;
}

.appendix-table.double-header.table-zebra.standard-4.appendix-1.table-1
{
    margin-top: 20px;
}

.min-vet-equip
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	width: 100%;
}

.min-vet-equip td
{
	padding: 5px;
	vertical-align: top;
    background: white;
}

.min-vet-equip .border-bottom td
{
	border-bottom: 1px solid #afbbc2;
}

.min-vet-equip tr td:first-child
{
    width: 30%;
}

.min-vet-equip td p:first-child
{
    margin-top: 0px;
}

.min-vet-equip td p:last-child
{
    margin-bottom: 0px;
}

.deer-requirements
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	width: 100%;
}

.deer-requirements td
{
	padding: 5px;
	vertical-align: top;
    background: white;
}

.deer-requirements .border-bottom td
{
	border-bottom: 1px solid #afbbc2;
}

.deer-requirements .alt-row td
{
	background: #eff1f3;
}

.deer-requirements .bold-text td
{
	font-weight: bold;
}

.deer-requirements td p:first-child
{
    margin-top: 0px;
}

.deer-requirements td p:last-child
{
    margin-bottom: 0px;
}

.appendix-table.table-zebra.standard-4.appendix-2.table-5
{
    margin-bottom: 1em;
}

.port-of-loading
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	margin-bottom: 1em;
	width: 100%;
}

.port-of-loading td
{
	padding: 5px;
	vertical-align: top;
	background: white;
}

.port-of-loading tr:first-child td
{
	border-bottom: 1px solid #afbbc2;
	font-weight: bold;
}

.port-of-loading td p:first-child
{
    margin-top: 0px;
}

.port-of-loading td p:last-child
{
    margin-bottom: 0px;
}

.vessel-information
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	width: 100%;
}

.vessel-information td
{
	padding: 5px;
	vertical-align: top;
	background: white;
}

.vessel-information td p:first-child
{
    margin-top: 0px;
}

.vessel-information td p:last-child
{
    margin-bottom: 0px;
}

.mortality
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	width: 100%;
}

.mortality td
{
	padding: 5px;
	vertical-align: top;
	background: white;
}

.mortality tr:first-child td
{
	border-bottom: 1px solid #afbbc2;
}

.mortality td p:first-child
{
    margin-top: 0px;
}

.mortality td p:last-child
{
    margin-bottom: 0px;
}

.end-of-voyage
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	width: 100%;
}

.end-of-voyage td
{
	padding: 5px;
	vertical-align: top;
    background: white;
}

.end-of-voyage td p
{
	margin: 5px 0;
	vertical-align: top;
}

.maximum-gestation
{
	border: 1px solid #afbbc2;
	border-collapse: collapse;
	width: 100%;
}

.maximum-gestation tr:first-child td
{
	border-bottom: 1px solid #afbbc2;
	font-weight: bold;
    vertical-align: bottom;
}

.maximum-gestation td:first-child
{
    width: 40%;
    text-align: left;
}

.maximum-gestation td
{
	padding: 5px;
	vertical-align: top;
    background: white;
    text-align: center;
}

.air-transport-journey
{
	border-collapse: collapse;
	border: 1px solid  #afbbc2;
	width: 100%;
}

.air-transport-journey td
{
	border-bottom: 1px solid  #afbbc2;
	padding: 5px;
	vertical-align: top;
    background: white;
}

.air-transport-journey td p
{
	margin: 5px 0px;
}


.warning
{
    color: #881820;
    margin-bottom: 20px;
}

.warning a
{
    text-decoration: underline !important;
    color: #881820 !important;
}

.vertical-center
{
    display: flex;
    align-items: center;
}

.icon-wrapper 
{
    position: relative;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    height: 18px;
    justify-content: center;
    width: 18px;
}

.icon-wrapper:hover
{
    cursor: pointer;
}

.warning-icon 
{
    border: 1px solid #ff970f;
}

.info-icon 
{
    border: 1px solid #2db0f7;
}

.icon-ml {
    margin-left: 10px;
}

.icon-wrapper .icon-wrapper-info-tooltip {
    visibility: hidden;
    width: 200px;
    background-color: white;
    text-align: left;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 50%;
    left: 105%;
    border: 1px solid #2db0f7;
    transform: translate(1%, 50%);
}

.icon-wrapper .icon-wrapper-info-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #2db0f7 transparent transparent;
}

.icon-wrapper:hover .icon-wrapper-info-tooltip {
    visibility: visible;
}

.icon-wrapper .icon-wrapper-warning-tooltip {
    visibility: hidden;
    width: 200px;
    background-color: white;
    text-align: left;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 50%;
    left: 105%;
    border: 1px solid #ff970f;
    transform: translate(1%, 50%);
}

.icon-wrapper .icon-wrapper-warning-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #ff970f transparent transparent;
}

.icon-wrapper:hover .icon-wrapper-warning-tooltip {
    visibility: visible;
}

.info-message {
    color: #2db0f7;
}

.warning-message {
    color: #ff970f
}