<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Styles for google search bar  */

/* Wrapper container for trigger button and search bar*/
.gsearch-container, .mobile-gsearch-container {
  align-self: center;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Trigger icon for displaying the search bar */
.g-search-trigger {
  background-color: #f0f6ff;
  padding: 10px !important;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  color: #000;
}

/* Removing underline on hover */
.g-search-trigger:hover::before {
  background: none !important;
}

.g-search-trigger:hover::after {
  background: none !important;
}

.flaticon-delete:after, .flaticon-delete:before {
  font-size: 12px !important;
  font-weight: 100 !important;
}

/* - Giving the search bar container a fixed with and positiong
  it by absolute value to show below navigation bar.
   - Not visible by default. Shows up only when trigger icon is clicked. */
.gsearch-container &gt; div, .mobile-gsearch-container &gt; div  {
  display: none;
  width: 370px;
  position: absolute;
  top: 90px;
  right: -100px;
  animation: show-from-opacity 1.2s 1;
}

.mobile-gsearch-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  margin-left: 0;
  max-width: 370px;
}

.mobile-gsearch-container .g-search-trigger {
  background-color: #1b5dc1;
  color: #fff;
}

.mobile-gsearch-container &gt; div {
  right: -50px;
}

/* Positioning mobile search results properly */
.mobile-gsearch-container .gsc-results-wrapper-overlay {
  position: absolute !important;
  right: 10px !important;
  margin-right: 10px;
  width: 95%;
  height: 400px;
  border-radius: 10px;
}

/* Hiding the background image which overlays in search bar close icon */
.mobile-gsearch-container .gsc-modal-background-image {
  display: none;
}

/* Animation to display search bar from opacity 0 to 1 */
@keyframes show-from-opacity {
  from {opacity: 0}
  to {opacity: 1}
}

/* Changing the default rectangle styled search bar */
.gsc-control-cse {
  border: none !important;
  border-radius: 20px;
  padding: 2.5rem !important;
}

/* Removing default borders */
.gsc-control-cse td {
  border: none !important;
}

.gsc-input-box {
  border: none !important;
}

.gsc-input-box table {
  border: none;
  margin: 0 !important;
}

.gsc-input-box input.gsc-input {
  padding: 10px !important;
  background: none !important;
  border: 2px solid #ccc !important;
  font-size: 20px;
  color: #222121;
}

/* Highlighting input filed with border when user types */
.gsc-input-box input:focus {
  border: 2px solid dodgerblue !important;
  transition: border .4s;
}

.gsc-search-box .gsc-input {
  padding-right: 0px !important;
}

.gsc-control-cse .gsib_b {
  display: none;
}

.gsc-search-button button {
  background-color: #FE4C1C;
  padding: 13px;
  border-radius: 50%;
  border: none;
}

.gsc-search-button button:hover {
  background-color: #e67455;
}

/* Search icon svg */
.gsc-search-button svg {
  width: 19px;
  height: 19px;
}

@media (max-width: 400px) {
  .mobile-gsearch-container &gt; div {
    width: 300px;
  }
}
/* End of styles for google search bar */

/* Whatsapp Chat support fixes */
.wws-gradient--position {
  background: none;
}

.wws-popup {
  /* Initially the popup is not displayed. Popup is 
  displayed only when user clicks the icon. */
  display: none;
}
/* End of whatsapp chat support fixes */

.internship-name {
  text-align: center;
  margin-top: 3.3rem;
}</pre></body></html>