/***********************
    Lato Font
************************/

header, section, footer, aside, nav, main, article, figure {
    display: block;
}

html{
    height: 100%;
}

html, body, * {
    /* font-family: 'Lato', sans-serif; P1DEV-1726 */
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
	background-color: #f1f1f1;
}

* {
    outline: none;
    transition: easy;
}

.container.body {
	background-color: #ffffff;
}

.navbar-brand {
	padding: 5px 15px;
}

.navbar-brand img {
    width: 225px;
}

small {
    font-size: 0.8em;
}

.btn:focus {
  outline: none;
}

button[disabled] {
    cursor: not-allowed!important;
    filter: alpha(opacity=65)!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    opacity: .85 !important;
}

button small {
    display: block;
    font-size: 0.7em;
    line-height: 0.7em;
    margin-top: 2px;
}

.scroll {
    overflow-y: hidden;
    overflow-x: auto;
}

/* SHARED COMPONENT STYLES */


#loading {
    display: none;
    position: fixed;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 3px 5px 3px 25px;
    background-image: url('image/loading.gif');
    background-repeat: no-repeat;
    background-position: left 5px center;
    background-size: auto 12px;
    font-size: 0.8em;
    width: 70px;
    height: 20px;
    top: 0;
    left: 50%;
    margin-left: -35px;
    z-index: 9999;
}

.popupmodal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    z-index: 9999;
}

.popupmodal-content {
    margin: 0 auto;
    padding: 20px;
    width: 350px;
    height: 120px;
    top: 50%;
    left: 50%;
    position: fixed;
    margin-top: -120px;
    margin-left: -175px;
    text-align: center;
    color: #fff;
    font-size: 1.5em;
}

.popupmodal-content i {
	font-size: 2em;
    margin-bottom: 15px;
}

.p1-div-loading {
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p1-div-loading .p1-menu-icon-image {
    background: url('image/pre-loader.svg');
    max-width: 128px;
    width: 128px;
    height: 128px;
    background-size: 128px;
    background-position: center;
    background-repeat: no-repeat;
}

#submit-modal label {
    font-size: 1em;
    font-weight: 400;
}

#submit-modal .submitting {
    margin-top: 5px;
}

#robot-controls {
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    width: 100px;
    padding: 5px;
    z-index: 99999;
    top: 45px;
    text-align: center;
    right: 5px;
    display: none;
    border-radius: 5px;
    opacity: 0.25;
}

#robot-controls:hover,
#robot-controls:focus,
#robot-controls:active {
	opacity: 1;
}

#robot-controls input {
    width: 30px;
    font-size: 1em;
    line-height: 19px;
    border: 1px solid #C1C1C1;
    padding: 2px 5px;
    border-radius: 0;
    font-weight: 600;
    text-align: center;
    float: left;
    border-left: 0;
    border-right: 0;
    height: 25px;
}

#robot-controls label {
    font-size: 0.75em;
    color: #fff;
    font-weight: 100;
    margin: 0;
}

#robot-controls label.robot-iteration {
	font-weight: 600;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    border-radius: 3px;
    padding: 3px 0;
    font-size: 1em;
    margin-bottom: 5px;
}

#robot-controls button.unpaused {
	color: red;
}

#robot-controls button.paused {
    color: green;
}

button.paused i.bt-pause {
     display: inline;
}

button.paused i.bt-play {
    display: none;
}

button.unpaused i.bt-pause {
    display: none;
}

button.unpaused i.bt-play {
    display: inline;
}

#robot-controls button.paused,
#robot-controls button.unpaused {
    border-radius: 3px;
}

#robot-controls button.plus {
    height: 25px;
    border-radius: 0 3px 3px 0;
    float: left;
    padding: 3px 8px;
    border-color: #C1C1C1;
}

#robot-controls button.minus {
    height: 25px;
    border-radius: 3px 0 0 3px;
    float: left;
    padding: 3px 8px;
    border-color: #C1C1C1;
}

.orientation-lock {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    top: 0;
    bottom: 0;
    background-image: url('image/portrait-orientation.png');
    background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
}

.locked .orientation-lock {
    display: block;
}

.no-selection {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

/* CSS3 Animations */

.animated {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}


.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9{
    padding-right: 8px;
    padding-left: 8px;
}
.row {
    margin-right: -8px;
    margin-left: -8px;
}
.container {
    padding-right: 8px;
    padding-left: 8px;
}

.endpage-body>.card {
    overflow: auto;
    display: block;
    height: fit-content !important;
    margin-top: 32px !important;
    max-height: calc(100vh - 180px);
}

.water-mark-wrapper{
    display: flex;
    width: fit-content;
    position: relative;
}
.water-mark-wrapper .watermark{
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 4px;
    left: 4px;
    z-index: 100;
    opacity: 0.5;
}

.water-mark-wrapper .watermark img{
    width: 100%;
    height: 100%;
}

/* added for watermark changes - PDEV-30 */

.flashlight-radio .p1Radio .flashlight-radio-text span.round-button-label, .flashlight-checkbox .p1Check.flashlight-checkbox-text span.round-button-label{
     /* display: flex !important; */ /*avoid removing spaces between bold text and normal text in responses*/
    align-items: center;
}

/* end pages are not mobile responsive - PSUP-6645 */
@media only screen and (max-width: 680px) {
    .endpage-body>.card {
		min-width: calc(100% - 24px) !important;
    }
    /* PDEV-999 */
	.flashlight-question.flashlight-radio .flashlight-label .lightbox span{
		background-size: 100% !important;
		background-position: top !important;
	}
    .flashlight-question.flashlight-radio img{
		max-width: 100%;
	}
}

/*Remove banner on mobile survey view - PDEV-1504 - start*/
@media only screen and (max-width: 768px) {
    .question-container {
      margin-top: 24px !important;
      border-radius: 0px !important;
      width: 100% !important;
    }
   .banner{
      display: none !important;
  }
  }
/*Remove banner on mobile survey view - PDEV-1504 - end */

/* 1185 */
/* list alignments */
ol, ul {
    margin-left: 40px;
    /* line-height: 36px; P1DEV-1631*/
}